15 lines
376 B
C++
15 lines
376 B
C++
#pragma once
|
|
|
|
#include "TerrainSeamlessWorldInfo.h"
|
|
#include <kfile/KFileManager.h>
|
|
|
|
|
|
class CTerrainSeamlessWorldInfoForClient : public CTerrainSeamlessWorldInfo
|
|
{
|
|
protected:
|
|
KStream* GetResourceStream( const char* szFileName )
|
|
{
|
|
return KFileManager::Instance().CreateStreamFromResource( szFileName, true ); // 이거 여러번 안불리게 해주세요. by Testors
|
|
}
|
|
};
|