예제 #1
0
파일: UI.cs 프로젝트: JidamKim/LittleRemo
 public void Draw()
 {
     Line.Draw();
     Wheel.Draw();
 }
예제 #2
0
파일: UI.cs 프로젝트: JidamKim/LittleRemo
 public static void Draw(Color c)
 {
     Graphic.Draw(c);
 }
예제 #3
0
 public static void Absolute(Rectangle Bound, Color c)
 {
     Lighter = new Gfx2D("WhiteSpace", Bound);
     Lighter.Draw(c);
 }
예제 #4
0
 public static void Vignette(Rectangle Bound, float opacity)
 {
     Lighter = new Gfx2D("Light", Bound);
     Lighter.Draw(Color.White * opacity);
 }
예제 #5
0
        public static void DrawFullScreen(string SpriteName, Color c)
        {
            Gfx2D g = new Gfx2D(SpriteName, FullScreen);

            g.Draw(c);
        }