mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
20 lines
386 B
C#
20 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Enums
|
|
{
|
|
public enum DamageTypeEnum
|
|
{
|
|
Physical = 1000111,
|
|
Fire = 1000112,
|
|
Ice = 1000113,
|
|
Thunder = 1000114,
|
|
Wind = 1000115,
|
|
Quantum = 1000116,
|
|
Imaginary = 1000117
|
|
}
|
|
}
|