Added more logic gates and fixed placement issues

This commit is contained in:
Robert 2020-12-02 13:09:47 +01:00
parent 96f2cffbcc
commit 79c5d147a3
10 changed files with 157 additions and 19 deletions

View file

@ -25,6 +25,7 @@ private:
void ToggleSimulation();
void ToggleComponentPlacer();
void LoadGhostLabel(const QString& resource);
Component* componentAt(const QPoint& point);
Ui::Window* ui;
bool simulating;
@ -37,4 +38,6 @@ private:
GhostLabel* ghostImage;
QString resourcePath;
QActionGroup* componentGroup;
std::vector<Component*> components;
};