12 lines
307 B
C#
12 lines
307 B
C#
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;
|
|
internal static int DRAWABLE_OBJECTS_SIZE_INITIAL = 256;
|
|
}
|