コード例 #1
0
ファイル: ScreenManager.cs プロジェクト: abenavente406/RPG
 public void addScreen(ScreenId id, Screen s, bool update = true, bool draw = true)
 {
     s.DoUpdate = update;
     s.DoDraw = draw;
     s.LoadContent();
     screens.Add(id, s);
 }
コード例 #2
0
ファイル: ScreenManager.cs プロジェクト: abenavente406/RPG
 public void addScreen(ScreenId id, Screen s, bool update = true, bool draw = true)
 {
     s.DoUpdate = update;
     s.DoDraw   = draw;
     s.LoadContent();
     screens.Add(id, s);
 }
コード例 #3
0
ファイル: ScreenManager.cs プロジェクト: maraver/Scroller-RPG
 public void addScreen(ScreenId id, Screen s, bool update = true, bool draw = true)
 {
     s.setUpdate(update);
     s.setDraw(draw);
     s.LoadContent();
     screens.Add(id, s);
 }