00001 #include "graphic.h"
00002
00003 const Color BLACK = { 0, 0, 0 };
00004 const Color WHITE = { 0xff, 0xff, 0xff };
00005 const Color RED = { 0xff, 0, 0 };
00006 const Color GREEN = { 0, 0xff, 0 };
00007 const Color BLUE = { 0, 0, 0xff };
00008 const Color YELLOW = { 0xff, 0xff, 0x33 };
00009 const Color ORANGE = { 0xff, 0xcc, 0x00 };
00010 const Color VIOLET = { 0x55, 0x00, 0xff };
00011
00012 unsigned int SIZE;
00013 unsigned int HEIGHT;
00014 unsigned int WIDTH;
00015
00016 int *rand_tab = 0;
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030