f37369cdda
Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
234 B
C#
15 lines
234 B
C#
namespace HSUI.Enums
|
|
{
|
|
public enum DamageType
|
|
{
|
|
Unknown = 0,
|
|
Slashing = 1,
|
|
Piercing = 2,
|
|
Blunt = 3,
|
|
Magic = 5,
|
|
Darkness = 6,
|
|
Physical = 7,
|
|
LimitBreak = 8
|
|
}
|
|
}
|