#pragma once #include "DataModelV2/Instance.h" #include class PropertyWindow { public: PropertyWindow(int x, int y, int sx, int sy, HMODULE hThisInstance); bool onCreate(int x, int y, int sx, int sy, HMODULE hThisInstance); void UpdateSelected(std::vector selection); void ClearProperties(); void onResize(); void refreshExplorer(std::vector selection); HWND _hwndProp; private: HWND _propGrid; HWND _explorerComboBox; void _resize(); };