MacLO/src/main.c
Jon Thysell 2ce4236ea7 Proper event loop, menus, and more
* Added a proper event loop
* Added minimal menu bars
* Added about menu
* GameWindow initializes a GameEngine (even if you can't play it yet)
* Updated variable naming conventions
2021-10-15 17:29:07 -07:00

12 lines
197 B
C

// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
#include "MacLO.h"
void main(void)
{
MacLO_ToolBoxInit();
MacLO_AppInit();
MacLO_MainLoop();
}