Files
Blocks3D/PropertyWindow.h
2018-10-23 15:15:08 -07:00

15 lines
345 B
C++

#pragma once
#include "Instance.h"
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 SetProperties(Instance *);
void ClearProperties();
void onResize();
HWND _hwndProp;
private:
HWND _propGrid;
void _redraw();
};