d9e7fd7019
- Add Abstract Asset class which defines Assets - Add AssetManager class to keep track of all the Asset - Add AssetFile class to cache the asset without loading it - Add UUID class to uniquely identify assets - Add MetaFile class to load meta asset files
16 lines
232 B
C++
16 lines
232 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Copium
|
|
{
|
|
class RuntimeException
|
|
{
|
|
private:
|
|
std::string errorMessage;
|
|
public:
|
|
RuntimeException(const std::string& str);
|
|
|
|
const std::string& GetErrorMessage() const;
|
|
};
|
|
} |