mirror of
https://github.com/SirusDoma/VoxCharger.git
synced 2024-12-18 10:25:54 +01:00
14 lines
237 B
C#
14 lines
237 B
C#
|
using System;
|
|||
|
|
|||
|
namespace VoxCharger
|
|||
|
{
|
|||
|
public enum GameVersion
|
|||
|
{
|
|||
|
Booth = 1,
|
|||
|
InfiniteInfection = 2,
|
|||
|
GravityWars = 3,
|
|||
|
HeavenlyHaven = 4,
|
|||
|
VividWave = 5
|
|||
|
}
|
|||
|
}
|