26 lines
455 B
C++
26 lines
455 B
C++
#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;
|
|
};
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|