15 lines
498 B
C++
15 lines
498 B
C++
#ifndef EXPANSION_COST_CHANGED_EVENT_H
|
|
#define EXPANSION_COST_CHANGED_EVENT_H
|
|
|
|
#include "Event.h"
|
|
|
|
// Fired when the current asteroid-expansion cost changes (REQ-EXP-COST): once at
|
|
// startup and again after each expansion is purchased. Carries no payload — the
|
|
// header Expand button re-reads Simulation::getCurrentExpansionCost() to update
|
|
// its caption and enabled state (REQ-UI-EXPAND-BUTTON).
|
|
class ExpansionCostChangedEvent : public Event
|
|
{
|
|
};
|
|
|
|
#endif // EXPANSION_COST_CHANGED_EVENT_H
|