Spielsucht420.exe/SlotClass.cs

30 lines
296 B
C#

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