OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PropertyBundlePlane.h
Go to the documentation of this file.
1#pragma once
2#include "PropertyBundle.h"
3#include "PlaneProperties.h"
4
5class __declspec(dllexport) PropertyBundlePlane : public PropertyBundle
6{
7public:
8 virtual void SetProperties(EntityBase * thisObject) override;
9 virtual bool UpdatePropertyVisibility(EntityBase * thisObject) override;
10
11 bool HidePlane(EntityBase* thisObject);
12
13private:
14 PlaneProperties properties;
15};