10 lines
285 B
C++
10 lines
285 B
C++
#pragma once
|
|
|
|
#include "Event.h"
|
|
|
|
// Emitted when the player presses C to capture a temporary blueprint (REQ-UI-BLUEPRINT-TEMP).
|
|
// Carries no payload: the blueprint is built from the current selection by the receiver.
|
|
class TemporaryBlueprintCaptureRequestedEvent : public Event
|
|
{
|
|
};
|