1
0
mirror of synced 2025-02-21 04:46:29 +01:00

9 lines
121 B
C#
Raw Normal View History

2022-04-25 02:07:11 +08:00
namespace SharedProject.enums;
public enum Difficulty
{
Simple = 0,
Normal = 1,
Hard = 2,
Extra = 3
2022-04-25 02:07:11 +08:00
}