init
This commit is contained in:
24
src/ScriptLib/Resource.h
Normal file
24
src/ScriptLib/Resource.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "../EffectLib/StdAfx.h"
|
||||
#include "../eterlib/Resource.h"
|
||||
#include "../eterlib/ResourceManager.h"
|
||||
|
||||
enum EResourceTypes
|
||||
{
|
||||
RES_TYPE_UNKNOWN,
|
||||
};
|
||||
|
||||
class CPythonResource : public CSingleton<CPythonResource>
|
||||
{
|
||||
public:
|
||||
CPythonResource();
|
||||
virtual ~CPythonResource();
|
||||
|
||||
void Destroy();
|
||||
|
||||
void DumpFileList(const char * c_szFileName);
|
||||
|
||||
protected:
|
||||
CResourceManager m_resManager;
|
||||
};
|
||||
Reference in New Issue
Block a user