1
0
mirror of synced 2025-02-16 10:42:42 +01:00
2022-06-20 02:10:04 +08:00

9 lines
121 B
C#

namespace SharedProject.enums;
public enum Difficulty
{
Simple = 0,
Normal = 1,
Hard = 2,
Extra = 3
}