*** empty log message ***

This commit is contained in:
2003-10-15 00:57:23 -04:00
parent 143c82175e
commit 4c6f5dfb15
69 changed files with 8788 additions and 0 deletions

28
include/screen.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef __screen_h__
#define __screen_h__
#include <string>
using namespace std;
class SCREEN
{
public:
SCREEN()
{
width=640;
height=480;
bpp=16;
fullscreen=false;
name = "";
}
short width;
short height;
char bpp;
bool fullscreen;
string name;
};
#endif