Exemplo n.º 1
0
 public static void Vignette(Rectangle Bound, float opacity)
 {
     Lighter = new Gfx2D("Light", Bound);
     Lighter.Draw(Color.White * opacity);
 }
Exemplo n.º 2
0
 public static void Absolute(Rectangle Bound, Color c)
 {
     Lighter = new Gfx2D("WhiteSpace", Bound);
     Lighter.Draw(c);
 }
Exemplo n.º 3
0
Arquivo: UI.cs Projeto: jidamy/damsan
 public static void Draw(Color c)
 {
     Graphic.Draw(c);
 }
Exemplo n.º 4
0
Arquivo: UI.cs Projeto: jidamy/damsan
 public void Draw()
 {
     Line.Draw();
     Wheel.Draw();
 }
Exemplo n.º 5
0
        public static void DrawFullScreen(string SpriteName, Color c)
        {
            Gfx2D g = new Gfx2D(SpriteName, FullScreen);

            g.Draw(c);
        }