14 lines
290 B
C++
14 lines
290 B
C++
#pragma once
|
|
|
|
#include "TerrainPropInfo.h"
|
|
#include <kfile/KFileManager.h>
|
|
|
|
class CTerrainPropInfoForClient : public CTerrainPropInfo
|
|
{
|
|
protected:
|
|
KStream* GetResourceStream( const char* szFileName )
|
|
{
|
|
return KFileManager::Instance().CreateStreamFromResource( szFileName, true );
|
|
}
|
|
};
|