blob: df5c0c4481dfbfa4ce352b2c2e37b601b9101bc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace SuperPolarity
{
class Screen
{
protected SuperPolarity Game;
public bool Active;
public Screen(SuperPolarity game)
{
Active = false;
Game = game;
}
public virtual void Update(GameTime gameTime)
{
}
public virtual void Draw(SpriteBatch spriteBatch)
{
}
public virtual void LoadContent()
{
}
public virtual void Initialize()
{
}
public virtual void CleanUp()
{
}
}
}
|