13 lines
No EOL
196 B
C++
13 lines
No EOL
196 B
C++
#pragma once
|
|
|
|
#include "MtRandom.h"
|
|
#include "Singleton.h"
|
|
|
|
class CRandom : public CMtRandom, public CSingleton<CRandom>
|
|
{
|
|
public:
|
|
CRandom() {}
|
|
virtual ~CRandom() {}
|
|
};
|
|
|
|
extern CRandom g_Random; |