コード例 #1
0
 public ActiveList(MyGame theGame, float updateTickInSeconds)
 {
     m_theGame = theGame;
     m_timer = new PTimer(theGame.TimerManager, OnUpdate);
     m_timer.Interval = updateTickInSeconds;
 }
コード例 #2
0
ファイル: Timer.cs プロジェクト: TastyWithPasta/pastalib_psm
 internal void RemoveTimer(PTimer timer)
 {
     m_timers.Remove(timer);
 }
コード例 #3
0
ファイル: Timer.cs プロジェクト: TastyWithPasta/pastalib_psm
 internal void AddTimer(PTimer timer)
 {
     m_timers.Add(timer);
 }
コード例 #4
0
 public ActiveList(MyGame theGame, float updateTickInSeconds)
 {
     m_theGame        = theGame;
     m_timer          = new PTimer(theGame.TimerManager, OnUpdate);
     m_timer.Interval = updateTickInSeconds;
 }
コード例 #5
0
ファイル: Timer.cs プロジェクト: TastyWithPasta/pastalib_psm
 internal void RemoveTimer(PTimer timer)
 {
     m_timers.Remove(timer);
 }
コード例 #6
0
ファイル: Timer.cs プロジェクト: TastyWithPasta/pastalib_psm
 internal void AddTimer(PTimer timer)
 {
     m_timers.Add(timer);
 }