mirror of
https://github.com/SirusDoma/VoxCharger.git
synced 2024-11-28 01:10:49 +01:00
18 lines
273 B
C#
18 lines
273 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VoxCharger
|
|||
|
{
|
|||
|
public enum InfiniteVersion
|
|||
|
{
|
|||
|
MXM = 0,
|
|||
|
INF = 2,
|
|||
|
GRV = 3,
|
|||
|
HVN = 4,
|
|||
|
VVD = 5
|
|||
|
}
|
|||
|
}
|