Added TUI.cs, TXTFileIO.cs, SlotClass.cs

main
The_miro 2024-10-03 10:50:11 +02:00
parent e3d881b9df
commit 73ca9c8b99
4 changed files with 57 additions and 1 deletions

View File

@ -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" };

Binary file not shown.

View File

@ -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)
{
}
}
}

23
TUI.cs Normal file
View File

@ -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 "";
}
}
}