From 73ca9c8b99460fdc16ae7c7129a686ee283e3d75 Mon Sep 17 00:00:00 2001 From: The_miro Date: Thu, 3 Oct 2024 10:50:11 +0200 Subject: [PATCH] Added TUI.cs, TXTFileIO.cs, SlotClass.cs --- Program-Core_GPT.cs | 6 +++++- Program-Core_GPT.exe | Bin 4096 -> 4096 bytes SlotClass.cs | 29 +++++++++++++++++++++++++++++ TUI.cs | 23 +++++++++++++++++++++++ 4 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 TUI.cs 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 381fe7a432eb61e8ea71924b73faa9b913c3f905..318fd38195f0d6dea661c216ab3861cf73388e3c 100755 GIT binary patch delta 766 zcmYjPL2DCH5dPloCcD|BOSg+jV@aAAjcbb`MGy^GOWM*F6^b>c*h7poq!CR@vf#}| z5HA)nJbH;9BvLS-r+CvJpr8;0uY!0L73sx#h_jm(JMg}l@0)ou@4el6q#k+vg8gW; zv)Z#bZ~AG?8`&X&M7<^g zZq;3p$i-`s7x3 z>mGm86KHydn2QiZYrdxriak$HdS)6 zgVm1=>wH!`er}3R7rP6*BtK}!OIEd1F4m|4-qO6Tt!0+5NoO1+EjE`~m?8g^_$}TR z$EWG8AObHfDyA3edpidHIvTwLMiD1G~vh**r+yB`dn zB*w7pum-j;X0zzQ-1R;~6Di7hVDAVbP2VYqi%?0)K%=hLU=ZeMMs%;nq9};_4yIE$ zh7(RAffY<6fk{Ypd(c69PQ1v`_uyWZ_d9`vUTUxc& z@So2YO2st`m-3}D<_hIPHE$Jo%vI@Zxjrz1-fZUc_R8*&@$|zdt?zHxc9UE3(Xb+c zF@;{5d1cp-Z^#wWLYg8*ph>cz@RpqL@1N-1-p^|DFLBNW4zq6Ok37pdnz}0rzfN~_ J?I&v_<$qtZd>Q}% delta 564 zcmZ8eOK1~O6g_W#nVB|^rh%lPj!tMAMq6Uss0BZTsIAyYrGy4tNTDFHr7f-C&L$!* zTu8$O7ug7|>N+5}a;qE3+LgL-qqr3}@yrwjy>QRF=bm%loA;(2w!?!%b-ep(RS%|t z8(_=>uGuYSrKs+xl62I5h;l3di%bJH7K^}R3s4D%Bg(7FvN5W^u)$_#kKp_Az__GF zDRDxB0pukz4YWm$Js~KnGgxxfT7BKmSkYvZ(ZA Z|Gj%v$(T3jYyX#NglGF1{X=!Dsozu?Rb2o8 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 ""; + } + } +}