OldBlueWater/BlueWater/Assets/02.Scripts/Utility/GlobalValue.cs
2023-08-31 15:46:13 +09:00

30 lines
794 B
C#

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class GlobalValue
{
public const int CARD_DATA_CAPACITY = 50;
public const int AI_VIEW_DATA_CAPACITY = 50;
public const int AI_STAT_DATA_CAPACITY = 50;
public const int UNIT_DATA_CAPACITY = 50;
public const int ISLAND_DATA_CAPACITY = 50;
public const int ONE_UNIT_CAPACITY = 16;
public const int AI_ANIMATOR_CAPACITY = 10;
public enum UnitType
{
NONE = -1,
ARCHER_E,
SPEAR_KNIGHT_E,
SPEARMAN_E,
SWORD_KNIGHT_E,
SWORDMAN_E,
ARCHER_P,
AXEMAN_P,
SPEARMAN_P,
SWORD_KNIGHT_P,
SWORDMAN_P
}
}
}