feat(console): animate console open and close

This commit is contained in:
fallenoak 2023-04-17 22:44:44 -05:00 committed by GitHub
parent 56092c6700
commit df1ab32267
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 55 additions and 2 deletions

View file

@ -1,6 +1,7 @@
#ifndef CONSOLE_CONSOLE_HPP
#define CONSOLE_CONSOLE_HPP
#include "console/Types.hpp"
#include "event/Types.hpp"
#include <cstdint>
@ -12,8 +13,12 @@ int32_t ConsoleGetActive();
KEY ConsoleGetHotKey();
CONSOLERESIZESTATE ConsoleGetResizeState();
void ConsoleSetActive(int32_t active);
void ConsoleSetHotKey(KEY hotkey);
void ConsoleSetResizeState(CONSOLERESIZESTATE state);
#endif // ifndef CONSOLE_CONSOLE_HPP