Britbot
Simulator/SimulationEndEvent.cs
Go to the documentation of this file.
00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005 using System.Threading.Tasks;
00006 
00007 namespace Britbot.Simulator
00008 {
00012     class SimulationEndEvent : SimulatedEvent
00013     {
00014         public SimulationEndEvent(int turn) : base(turn) { }
00015 
00016         public override bool Activate(SimulatedGame sg)
00017         {
00018             return true;
00019         }
00020     }
00021 }