AlpacaLibrary/Include/Game/Tools/Antiban.hpp

15 lines
301 B
C++
Raw Normal View History

2018-09-03 03:13:53 +00:00
#ifndef ANTIBAN_HPP_INCLUDED
#define ANTIBAN_HPP_INCLUDED
2018-09-23 02:01:54 +00:00
#include <cstdint>
2018-12-27 18:17:09 +00:00
namespace Antiban
2018-09-03 03:13:53 +00:00
{
2018-12-27 18:17:09 +00:00
void LoseClientFocus();
void MouseOffClient(bool LoseFocus = true);
void SetClientSize(std::int32_t Width, std::int32_t Height);
void MaximizeClient();
2018-12-31 21:52:58 +00:00
}
2018-09-03 03:13:53 +00:00
#endif // ANTIBAN_HPP_INCLUDED