コード例 #1
0
ファイル: GoodGuy.cs プロジェクト: W0dan/CaveDwellers
        public void Notify(GameTime gameTime)
        {
            if (!_timeOutFrom.HasValue) return;

            if (gameTime.Time.Subtract(_timeOutFrom.Value).TotalSeconds >= 1)
            {
                _timeOutFrom = null;
            }
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: W0dan/CaveDwellers
 public void Notify(GameTime gameTime)
 {
     GameCanvas.Source = _gamePresenter.DrawGame();
 }