micromenu/inc/hal/hal.h

21 lines
302 B
C

#ifndef _HAL_H_
#define _HAL_H_
void debug(const char* str);
void hal_init_screen(int w, int h);
void hal_poll_input(bool *ptr);
void hal_draw(int x, int y);
void hal_render();
void render();
#ifndef LINUX
void * operator new(unsigned int size);
void operator delete(void * ptr);
#endif
#endif