#pragma once #include "objects/annotation.h" #include "objects/base/instance.h" #include // The simplest instance // Has no functionality of its own, used purely for organizational/grouping purposes class DEF_INST_(explorer_icon="folder") Folder : public Instance { AUTOGEN_PREAMBLE public: Folder(); ~Folder(); static inline std::shared_ptr New() { return std::make_shared(); }; static inline std::shared_ptr Create() { return std::make_shared(); }; };