// Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors. // All rights reserved. // Code licensed under the BSD License. // http://www.anki3d.org/LICENSE #include #include namespace anki { ScriptResource::~ScriptResource() { m_source.destroy(getAllocator()); } Error ScriptResource::load(const ResourceFilename& filename, Bool async) { ResourceFilePtr file; ANKI_CHECK(openFile(filename, file)); StringAuto src(getAllocator()); ANKI_CHECK(file->readAllText(src)); m_source.create(getAllocator(), src); return Error::NONE; } } // end namespace anki