rnr/Projects/Engine/Header/App/GUI/SelectionBox.hpp

15 lines
339 B
C++

#pragma once
#include <App/GUI/InstanceAdornment.hpp>
namespace RNR
{
class SelectionBox : public InstanceAdornment
{
protected:
virtual void setAdorneeEvent(Instance* instance);
public:
SelectionBox();
~SelectionBox();
virtual std::string getClassName() { return "SelectionBox"; }
};
}