2024-02-10 23:38:37 +00:00
|
|
|
/* date = February 10th 2024 3:00 pm */
|
|
|
|
|
|
|
|
#ifndef FRED_MODAL_H
|
|
|
|
#define FRED_MODAL_H
|
|
|
|
|
|
|
|
struct Modal_Mode
|
|
|
|
{
|
|
|
|
Mapping map;
|
|
|
|
FColor cursor_color;
|
|
|
|
String_Const_u8 name;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef CUSTOM_COMMAND_SIG(custom_cmd);
|
|
|
|
|
2024-02-10 23:43:16 +00:00
|
|
|
function Modal_Mode* modal_get_mode_curr();
|
|
|
|
|
2024-02-10 23:38:37 +00:00
|
|
|
#endif //FRED_MODAL_H
|