21 lines
No EOL
238 B
C++
21 lines
No EOL
238 B
C++
#pragma once
|
|
|
|
extern bool isConnected;
|
|
extern bool isLicenseValid;
|
|
|
|
class RLKTAuth : public CSingleton<RLKTAuth>
|
|
{
|
|
public:
|
|
RLKTAuth();
|
|
~RLKTAuth();
|
|
void Main();
|
|
//bool isValidated();
|
|
};
|
|
|
|
|
|
inline bool isValidated()
|
|
{
|
|
|
|
|
|
return true;
|
|
} |