Files
Darklings-FightingGame/Assets/_Project/Scripts/TrainingSettings.cs

13 lines
360 B
C#
Raw Permalink Normal View History

public class TrainingSettings
{
public static bool ShowHitboxes = false;
public static BlockType Block = BlockType.Off;
public static int BlockCount = 0;
public static int BlockCountCurrent = 0;
2022-04-05 16:43:46 +02:00
public static bool OnHit = false;
2022-06-05 14:18:44 +02:00
public static bool CpuOff = false;
2022-04-12 23:42:12 +02:00
public static int Stance = 0;
public enum BlockType { Off, BlockAlways, BlockCount }
}