Effect system and snowpea

This commit is contained in:
Фёдор Веселов 2024-10-02 19:46:51 +05:00
commit e797918e23
18 changed files with 353 additions and 16 deletions

View file

@ -7,11 +7,20 @@ namespace Newlon;
// Class for general-used constants and utility tools
//
public partial class Utility
public class Utility
{
//
// Code-accessed enumenators
//
#region Enums
public enum EffectSlots {FREEZE, STUN, POISON};
#endregion
public const int EffectSlotCount = 3;
public const int TileWidth = 50;
public const int TileHeight = 60;
public const int LayersCount = 3;
public static readonly Vector2I LeftFieldBoundary = new(305,76);
public static readonly Vector2I RightFieldBoundary = new(755,376);