namespace Mine2d.game.core;
public class Constants
{
public const int ChunkSize = 32;
public const int TileSize = 16;
public const int BreakDistance = 64;
public static Vector2 Gravity = new(0, 0.06f);
public const float JumpSpeed = 2.2f;
}