14 lines
144 B
C++
14 lines
144 B
C++
#pragma once
|
|
|
|
#include "PRO_Sys.h"
|
|
|
|
class CProfile
|
|
{
|
|
public:
|
|
CProfile();
|
|
|
|
CSys m_Sys;
|
|
};
|
|
|
|
// Singleton
|
|
extern CProfile InternalProfileManager; |