AI erstellt

This commit is contained in:
Wafa Sadri
2014-06-05 11:49:46 +02:00
parent 0021f75b4d
commit f10b06b048
2 changed files with 26 additions and 1 deletions

24
src/AI.cs Normal file
View File

@@ -0,0 +1,24 @@
using System;
using System.Timers;
namespace WorldOfPeacecraft
{
public class AI
{
Timer timer;
bool challengeSomeone = false;
public AI ()
{
timer = new Timer (5000.0);
timer.Elapsed += new ElapsedEventHandler (OnTimedEvent);
timer.Start ();
}
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
}
}
}