#include namespace XCEngine { namespace Resources { TextureImportSettings::TextureImportSettings() = default; TextureImportSettings::~TextureImportSettings() = default; Core::UniqueRef TextureImportSettings::Clone() const { return Core::UniqueRef(new TextureImportSettings(*this)); } bool TextureImportSettings::LoadFromJSON(const Containers::String& json) { return false; } Containers::String TextureImportSettings::SaveToJSON() const { return Containers::String(); } } // namespace Resources } // namespace XCEngine