mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01:00
15 lines
205 B
C
15 lines
205 B
C
|
//---
|
||
|
//
|
||
|
// gint drawing module: display
|
||
|
//
|
||
|
// Handles vram manipulation and drawing.
|
||
|
//
|
||
|
//---
|
||
|
|
||
|
#ifndef _DISPLAY_INTERNALS_H
|
||
|
#define _DISPLAY_INTERNALS_H
|
||
|
|
||
|
extern int *vram;
|
||
|
|
||
|
#endif // _DISPLAY_INTERNALS_H
|