예제 #1
0
파일: Uhr.cs 프로젝트: XaNNy0/Wurmspiel
 public Uhr(Steuerung steuerung)
 {
     _steuerung = steuerung;
     _timer.Tick += delegate { _steuerung.VerarbeiteUhrTick(); };
     _timer.Interval = Convert.ToInt32(_takt*1000);
 }