Beispiel #1
0
 public StackObject(StackObjectType objectType, string typeString, string text,
                    Player owner, Player controller, ColorsEnum colors,
                    GameActionDelegate resolutionAction)
 {
     ObjectType       = objectType;
     TypeString       = typeString;
     Text             = text;
     Owner            = owner;
     Controller       = controller;
     Colors           = colors;
     ResolutionAction = resolutionAction;
 }
Beispiel #2
0
        public StackObject(StackObjectType objectType, string typeString, string text, 
		                   Player owner, Player controller, ColorsEnum colors, 
		                   GameActionDelegate resolutionAction)
        {
            ObjectType = objectType;
            TypeString = typeString;
            Text = text;
            Owner = owner;
            Controller = controller;
            Colors = colors;
            ResolutionAction = resolutionAction;
        }