mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 08:42:45 +03:00
16 lines
321 B
C++
16 lines
321 B
C++
#ifndef UI_SCRIPT_FUNCTIONS_SHARED_HPP
|
|
#define UI_SCRIPT_FUNCTIONS_SHARED_HPP
|
|
|
|
#include "util/Lua.hpp"
|
|
#include <cstdint>
|
|
|
|
int32_t Script_GetAccountExpansionLevel(lua_State* L);
|
|
|
|
int32_t Script_IsLinuxClient(lua_State* L);
|
|
|
|
int32_t Script_IsMacClient(lua_State* L);
|
|
|
|
int32_t Script_IsWindowsClient(lua_State* L);
|
|
|
|
#endif
|