#pragma once #include "Property.h" class BoolProperty : public Property { public: BoolProperty(std::string name, bool& value, Instance& owner) { Property(name, value, owner); } ~BoolProperty(void); PROPGRIDITEM getPropGridItem(); };