NazaraEngine/include/Nazara/Core/Resource.hpp

28 lines
557 B
C++

// 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 <Nazara/Prerequesites.hpp>
#include <Nazara/Core/String.hpp>
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