14 lines
181 B
C++
14 lines
181 B
C++
#pragma once
|
|
|
|
#include "PRO_Sys.h"
|
|
#include "PRO_Data.h"
|
|
|
|
class CProfile
|
|
{
|
|
public:
|
|
CSys m_Sys;
|
|
CProfileData m_ProfileData;
|
|
};
|
|
|
|
// Singleton
|
|
extern CProfile InternalProfileManager; |