mirror of
https://github.com/SirusDoma/VoxCharger.git
synced 2024-11-28 01:10:49 +01:00
13 lines
169 B
C#
13 lines
169 B
C#
using System;
|
|
|
|
namespace VoxCharger
|
|
{
|
|
public enum Difficulty
|
|
{
|
|
Novice = 1,
|
|
Advanced = 2,
|
|
Exhaust = 3,
|
|
Infinite = 4
|
|
}
|
|
}
|