1
0

Remove unused code

This commit is contained in:
otya128
2016-12-17 17:16:46 +09:00
parent c1497252aa
commit 70ea3d5c17

View File

@@ -6,60 +6,6 @@ import derelict.opengl3.gl3;
import otya.smilebasic.petitcomputer;
import std.string;
enum DrawType
{
CLEAR,
PSET,
LINE,
FILL,
BOX,
CIRCLE1,
CIRCLE2,//startangle, endangle
TRI,
PAINT,
CLIPWRITE,
PUTCHR,
INIT,
}
struct Circle
{
short r, startr, endr;
short flag;
}
struct Character
{
int scalex;
int scaley;
wstring text;
}
struct DrawMessage
{
DrawType type;
byte page;
byte display;
uint color;
short x;
short y;
union
{
struct
{
union
{
short x2;
short w;
}
union
{
short y2;
short h;
}
Circle circle;
}
Character character;
}
//
}
class Graphic
{
PetitComputer petitcom;