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