Added TUI.cs, TXTFileIO.cs, SlotClass.cs
parent
e3d881b9df
commit
73ca9c8b99
|
@ -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.
29
SlotClass.cs
29
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue