You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
13 lines
360 B
C#
13 lines
360 B
C#
public class TrainingSettings
|
|
{
|
|
public static bool ShowHitboxes = false;
|
|
public static BlockType Block = BlockType.Off;
|
|
public static int BlockCount = 0;
|
|
public static int BlockCountCurrent = 0;
|
|
public static bool OnHit = false;
|
|
public static bool CpuOff = false;
|
|
public static int Stance = 0;
|
|
|
|
public enum BlockType { Off, BlockAlways, BlockCount }
|
|
}
|