Files
Blocks3D/src/include/Properties/BoolProperty.h
2021-03-13 19:07:15 -08:00

13 lines
252 B
C++

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