dusting
[carveJwlIkooP6JGAAIwe30JlM.git] / common.h
1 /*
2 * Copyright (C) 2021-2023 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 */
4
5 #ifndef COMMON_H
6 #define COMMON_H
7
8 #define VG_TIMESTEP_FIXED (1.0/60.0)
9 #define VG_3D
10 #define VG_GAME
11 //#define VG_STATIC static
12 #define VG_STATIC
13 #define VG_FRAMEBUFFER_RESIZE 1
14 #include "vg/vg.h"
15 #include "submodules/anyascii/impl/c/anyascii.c"
16
17
18 enum menu_controller_type{
19 k_menu_controller_type_keyboard,
20 k_menu_controller_type_xbox,
21 k_menu_controller_type_playstation,
22 k_menu_controller_type_steam,
23 k_menu_controller_type_steam_deck
24 };
25
26 VG_STATIC enum menu_controller_type menu_display_controller;
27
28 #endif /* COMMON_H */