; ; Raw Game Engine ; Copyright (C) 2023 Ernest Deak ; ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program. If not, see . ; ; Dummy file to compile engine itself %include "inc/generic.inc" section code_section global game_boot global game_init global game_update global game_render global game_object_handler global game_event_handler game_boot: funcstart stksetup exmcall RG_set_win_dim, 0,0, 640, 480 funcend game_init: ret game_update: ret game_render: ret game_object_handler: ret game_event_handler: ret .