mirror of
https://git.checksum.fail/alec/bahamut.git
synced 2026-05-26 17:05:20 +00:00
17 lines
189 B
HolyC
17 lines
189 B
HolyC
class Display
|
|
{
|
|
I64 width;
|
|
I64 height;
|
|
I64 bpp;
|
|
};
|
|
|
|
Display display;
|
|
|
|
U0 DisplayInit()
|
|
{
|
|
display.width = 640;
|
|
display.height = 480;
|
|
display.bpp = 32;
|
|
}
|
|
|
|
DisplayInit; |