Skip to content

Commit

Permalink
removed code replaced by InstantCG
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashope committed Mar 30, 2015
1 parent 9733e0c commit 627b684
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,39 +35,7 @@ using namespace InstantCG;
#define mapHeight 24

// replacements for quickcg functionality
/*
int w = SCREEN_WIDTH;
int h = SCREEN_HEIGHT;

struct ColorRGB
{
int r;
int g;
int b;
};
ColorRGB operator/(const ColorRGB& color, int a)
{
if(a == 0) return color;
ColorRGB c;
c.r = color.r / a;
c.g = color.g / a;
c.b = color.b / a;
return c;
}
ColorRGB RGB_Red = {255, 0, 0};
ColorRGB RGB_Green = { 0,255, 0};
ColorRGB RGB_Blue = { 0, 0,255};
ColorRGB RGB_White = {255,255,255};
ColorRGB RGB_Yellow = {255,255, 0};
bool done();
void redraw();
void cls();
void verLine(int x, int start, int end, ColorRGB color);
unsigned long getTicks();
*/
void print(float num);

const Uint8* keystate;
Expand Down

0 comments on commit 627b684

Please sign in to comment.