1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 23:48:30 +02:00
VVVVVV/desktop_version/src/RoomnameTranslator.h
Dav999-v 35d92e8e64 Add RoomnameTranslator.cpp/h (not compiled yet)
This commit is part of rewritten history of the localization branch.
The original (unsquashed) commit history can be found here:
https://github.com/Dav999-v/VVVVVV/tree/localization-orig
2022-12-31 20:04:56 -08:00

21 lines
468 B
C++

#ifndef ROOMNAMETRANSLATOR_H
#define ROOMNAMETRANSLATOR_H
#include <SDL.h>
namespace roomname_translator
{
extern bool enabled;
extern bool edit_mode;
extern SDL_Surface* dimbuffer;
extern SDL_Rect fullscreen_rect;
void set_enabled(bool value);
bool is_pausing(void);
void overlay_render(bool* force_roomname_hidden, int* roomname_r, int* roomname_g, int* roomname_b);
bool overlay_input(void);
}
#endif /* ROOMNAMETRANSLATOR_H */