9 lines
279 B
C++
9 lines
279 B
C++
#include "DeerCore/EntityEnviroment.h"
|
|
|
|
namespace Deer {
|
|
template <>
|
|
Scope<EntityEnvironment> ResourceBuilder<EntityEnvironment>::buildResource(const BaseDataType& baseData) {
|
|
Scope<EntityEnvironment> env = MakeScope<EntityEnvironment>();
|
|
return env;
|
|
}
|
|
} // namespace Deer
|