Replace recipe/schematic dropdowns with button and selection dialog
This commit is contained in:
12
src/lib/eventsystem/event/RecipeSelectionRequestedEvent.h
Normal file
12
src/lib/eventsystem/event/RecipeSelectionRequestedEvent.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "BuildingId.h"
|
||||
#include "Event.h"
|
||||
|
||||
class RecipeSelectionRequestedEvent : public Event
|
||||
{
|
||||
public:
|
||||
explicit RecipeSelectionRequestedEvent(BuildingId buildingId)
|
||||
: buildingId(buildingId) {}
|
||||
const BuildingId buildingId;
|
||||
};
|
||||
Reference in New Issue
Block a user