2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-02 02:53:29 +00:00
metaforce/Editor/ResourceOutliner/ResourceOutliner.hpp
2015-12-11 14:37:32 -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