mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
14 lines
212 B
C#
14 lines
212 B
C#
namespace Roblox.Common;
|
|
|
|
public class EntityCountJson : Json
|
|
{
|
|
public static int ApiVersion = 1;
|
|
|
|
public string count { get; private set; }
|
|
|
|
public EntityCountJson(string count)
|
|
{
|
|
this.count = count;
|
|
}
|
|
}
|