NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Effect/EEffectState.cs

14 lines
162 B
C#
Raw Normal View History

2023-12-28 19:01:07 +08:00
namespace Gameplay.Effect
2023-08-22 19:08:45 +08:00
{
public enum EEffectState
{
Error,
Loading,
Playing,
2023-10-19 15:00:19 +08:00
Returned,
2023-08-22 19:08:45 +08:00
Destroied,
}
}