derive threat cost dynamically
This commit is contained in:
@@ -24,6 +24,7 @@ SET(HDRS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ArenaStartRequestedEvent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ArenaInspectRequestedEvent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/WeaponFiredEvent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/DebugDrawToggledEvent.h
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
|
||||
14
src/lib/eventsystem/event/DebugDrawToggledEvent.h
Normal file
14
src/lib/eventsystem/event/DebugDrawToggledEvent.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "Event.h"
|
||||
|
||||
class DebugDrawToggledEvent : public Event
|
||||
{
|
||||
public:
|
||||
explicit DebugDrawToggledEvent(bool active)
|
||||
: active(active)
|
||||
{
|
||||
}
|
||||
|
||||
const bool active;
|
||||
};
|
||||
Reference in New Issue
Block a user