MacLO/src/MacLO.c

31 lines
469 B
C
Raw Normal View History

2021-10-11 18:11:48 +00:00
// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
#include "GameWindow.h"
#include "MacLO.h"
2021-10-11 18:11:48 +00:00
GameWindow gGameWindow;
void MacLO_InitToolBox()
2021-10-11 18:11:48 +00:00
{
InitGraf(&thePort);
InitFonts();
InitWindows();
InitMenus();
TEInit();
InitDialogs(nil);
2021-10-11 18:11:48 +00:00
FlushEvents(everyEvent, 0);
InitCursor();
}
void MacLO_InitWindows()
2021-10-11 18:11:48 +00:00
{
GameWindow_Init(&gGameWindow);
2021-10-11 18:11:48 +00:00
}
void MacLO_MainLoop()
2021-10-11 18:11:48 +00:00
{
while (!Button()) { }
}