示例#1
0
文件: Light.cs 项目: googleben/Blaze
 //draw the light
 public void Draw(GraphicsDevice device, Effect effect, SpriteBatch sb)
 {
     box.Draw(device, effect);
 }
示例#2
0
文件: Player.cs 项目: googleben/Blaze
 public void Draw(GraphicsDevice device, Effect effect)
 {
     //box.Rotation = MathHelper.ToRadians(Playing.Instance.dir);
     box.Draw(device, effect);
 }