mirror of
https://github.com/ssstolk/rts4ds.git
synced 2025-06-19 09:25:36 -04:00
16 lines
299 B
C
16 lines
299 B
C
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2007-2025 Sander Stolk
|
|
|
|
#ifndef _MENU_MAIN_H_
|
|
#define _MENU_MAIN_H_
|
|
|
|
#include "game.h"
|
|
|
|
void drawMenuMain();
|
|
void drawMenuMainBG();
|
|
void doMenuMainLogic();
|
|
void loadMenuMainGraphics(enum GameState oldState);
|
|
int initMenuMain();
|
|
|
|
#endif
|