derive threat cost dynamically
This commit is contained in:
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