11 lines
150 B
C#
11 lines
150 B
C#
namespace LunaWolfStudios.ScriptableSheets.Samples.RPG
|
|
{
|
|
public enum WeaponCategory
|
|
{
|
|
Melee = 0,
|
|
Ranged = 1,
|
|
Magic = 2,
|
|
Explosive = 3,
|
|
}
|
|
}
|