mirror of https://github.com/AxioDL/metaforce.git
19 lines
236 B
C++
19 lines
236 B
C++
|
#ifndef RUDE_PROJECT_MANAGER_HPP
|
||
|
#define RUDE_PROJECT_MANAGER_HPP
|
||
|
|
||
|
#include <HECL/Database.hpp>
|
||
|
|
||
|
namespace RUDE
|
||
|
{
|
||
|
|
||
|
class ProjectManager
|
||
|
{
|
||
|
HECL::Database::Project* m_proj = nullptr;
|
||
|
public:
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // RUDE_PROJECT_MANAGER_HPP
|