コード例 #1
0
ファイル: Animation.cs プロジェクト: jeffboulanger/cuodesktop
 public Animation(DrawImageHandler draw, Patch patch)
 {
     _draw = draw;
     _patch = patch;
     _frames = GetAnimation();
     _timer = new System.Timers.Timer(100);
     _timer.Elapsed += new ElapsedEventHandler(OnTick);
 }
コード例 #2
0
ファイル: Animation.cs プロジェクト: uotools/cuodesktop
 public Animation(DrawImageHandler draw, Patch patch)
 {
     _draw           = draw;
     _patch          = patch;
     _frames         = GetAnimation();
     _timer          = new System.Timers.Timer(100);
     _timer.Elapsed += new ElapsedEventHandler(OnTick);
 }