예제 #1
0
 public DDCrashView()
 {
     using (this.MyScreen.Section())
     {
         DDCurtain.DrawCurtain();
     }
 }
예제 #2
0
        public void DrawWall()
        {
            DDCurtain.DrawCurtain();

            if (this.WallColor != null)
            {
                DX.DrawBox(0, 0, DDConsts.Screen_W, DDConsts.Screen_H, DDUtils.GetColor(this.WallColor.Value), 1);
            }

            if (this.WallPicture != null)
            {
                DrawWallPicture();
                DDCurtain.DrawCurtain(this.WallCurtain);
            }
        }