iw4x-client/src/Components/Modules/Monitor.hpp

16 lines
253 B
C++
Raw Normal View History

#pragma once
namespace Components
{
class Monitor : public Component
{
public:
Monitor();
static bool IsEnabled();
private:
static int __stdcall EntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd);
};
}