mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-02-17 18:39:07 +00:00
12 lines
123 B
C#
12 lines
123 B
C#
namespace CS2_SimpleAdminApi;
|
|
|
|
public enum PenaltyType
|
|
{
|
|
Ban = 0,
|
|
Kick,
|
|
Mute,
|
|
Gag,
|
|
Silence,
|
|
Warn
|
|
}
|