// Copyright (C) 2014 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_RESOURCE_HPP #define NAZARA_RESOURCE_HPP #include #include class NAZARA_API NzResource { public: NzResource() = default; virtual ~NzResource(); NzString GetFilePath() const; void SetFilePath(const NzString& filePath); private: NzString m_filePath; }; #endif // NAZARA_RESOURCE_HPP