Syntriax.Engine/Engine.Core/Static/Internal/Constants.cs

11 lines
246 B
C#
Raw Normal View History

2023-11-23 22:07:49 +03:00
using System.Collections.Generic;
using Microsoft.Xna.Framework;
namespace Syntriax.Engine.Core;
internal static class Constants
{
internal static int BEHAVIOURS_SIZE_INITIAL = 16;
internal static int GAME_OBJECTS_SIZE_INITIAL = 256;
}