mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 21:34:15 +00:00
11 lines
219 B
C
11 lines
219 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
struct Point;
|
||
|
|
struct Window;
|
||
|
|
|
||
|
|
void StartMainMenuUI();
|
||
|
|
void TickMainMenuUI();
|
||
|
|
void DismissMainMenuUI();
|
||
|
|
void HandleMainMenuUIResolutionChange();
|
||
|
|
bool HandleMainMenuUIClick(Window *window, const Point &pt);
|