filesystem rework
This commit is contained in:
parent
64323290cc
commit
2905db3dce
174 changed files with 93 additions and 353 deletions
10
scripts/systems/static-data/FieldParams.cs
Normal file
10
scripts/systems/static-data/FieldParams.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using Godot;
|
||||
public class FieldParams
|
||||
{
|
||||
public const int TileWidth = 50;
|
||||
public const int TileHeight = 60;
|
||||
public const int LayersCount = 3;
|
||||
public static Vector2I LeftFieldBoundary = new(305, 76);
|
||||
public static Vector2I RightFieldBoundary = new(755, 376);
|
||||
public static readonly Vector2 Tile = new(TileWidth, TileHeight);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue