Example #1
0
        public Wheel CreatePalenqueWheel()
        {
            var wheel = new Wheel();
            wheel.Locations = new List<Location>();

            var location = new Location();
            location.LocationAction = (w) =>
            {
                var player = w.Owner;
            };

            return null;
        }
Example #2
0
 public void Execute(Worker worker, Wheel wheel)
 {
     wheel.AddWorker(worker);
 }