24 lines
344 B
C
24 lines
344 B
C
|
|
#ifndef _HAL_H_
|
|
#define _HAL_H_
|
|
|
|
|
|
void print(const char* str);
|
|
void print(char str);
|
|
void print(int str);
|
|
void setup();
|
|
void draw(int x, int y);
|
|
void render();
|
|
void quit();
|
|
|
|
#ifndef LINUX
|
|
|
|
void * operator new(unsigned int size);
|
|
void operator delete(void * ptr);
|
|
|
|
#endif
|
|
|
|
extern const int SCREEN_WIDTH;
|
|
extern const int SCREEN_HEIGHT;
|
|
|
|
#endif
|