2024-10-03 10:50:11 +02:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|