Effect system and snowpea
This commit is contained in:
parent
9b89ae98a6
commit
e797918e23
18 changed files with 353 additions and 16 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue