diff --git a/Program-Core_GPT.cs b/Program-Core_GPT.cs index 1e7509c..46c3109 100644 --- a/Program-Core_GPT.cs +++ b/Program-Core_GPT.cs @@ -1,9 +1,13 @@ -using System; +using System; +using _TUI; class SlotMachine { static void Main() { + TUI Test = new TUI(); + Test.Generate(); + Random random = new Random(); string[] symbols = { "Kirsche", "Zitrone", "Orange", "Pflaume", "Melone", "Glocke", "Bar" }; diff --git a/Program-Core_GPT.exe b/Program-Core_GPT.exe index 381fe7a..318fd38 100755 Binary files a/Program-Core_GPT.exe and b/Program-Core_GPT.exe differ diff --git a/SlotClass.cs b/SlotClass.cs index e69de29..91589a9 100644 --- a/SlotClass.cs +++ b/SlotClass.cs @@ -0,0 +1,29 @@ +using System; + +namespace SlotsOBJ +{ + public class Grid + { + + } + public class Slot + { + string[] Pool; + public Slot(string[] PossibleChars, int delay){ + Pool = PossibleChars; + } + + string Roll(int delay){ + + } + + string RollStart() + { + + } + string RollStop(int delay) + { + + } + } +} diff --git a/TUI.cs b/TUI.cs new file mode 100644 index 0000000..2ba0192 --- /dev/null +++ b/TUI.cs @@ -0,0 +1,23 @@ +using System; + +namespace _TUI +{ + public class TUI + { + public TUI() + { + + } + public string Generate() + { + int w = Console.WindowWidth; + int h = Console.WindowHeight; + + char[,] Terminal = new char[w,h]; + + + + return ""; + } + } +}