예제 #1
0
파일: ThemeManager.cs 프로젝트: envy/Huddy
 public void LoadDefaultTheme()
 {
     CurrentTheme = new Theme(_graphics);
     _themes.Add(CurrentTheme);
 }
예제 #2
0
파일: ThemeManager.cs 프로젝트: envy/Huddy
 public void Init(GraphicsDeviceManager graphics, ContentManager content)
 {
     _graphics = graphics;
     Content = content;
     CurrentTheme = null;
 }