2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-08 14:59:06 +00:00
metaforce/Editor/ResourceOutliner.hpp
2015-12-23 17:32:21 -10:00

21 lines
312 B
C++

#ifndef RUDE_RESOURCE_OUTLINER_HPP
#define RUDE_RESOURCE_OUTLINER_HPP
#include "Space.hpp"
namespace RUDE
{
class ResourceOutliner : public Space
{
struct State : SpaceState
{
DECL_YAML
} m_state;
SpaceState* spaceState() {return &m_state;}
};
}
#endif // RUDE_RESOURCE_OUTLINER_HPP