nav: more fixes to ladder navigation
refactor: bot difficulty data and add graph refresh command combat: fixes for smoke grenades (ref #743) engine: fixes to spawn management (ref #744)
This commit is contained in:
parent
7b378ba3fa
commit
17ed252b60
26 changed files with 506 additions and 408 deletions
|
|
@ -69,7 +69,7 @@ CR_DECLARE_SCOPED_ENUM (StatusIconCache,
|
|||
|
||||
class MessageDispatcher final : public Singleton <MessageDispatcher> {
|
||||
private:
|
||||
using MsgFunc = void (MessageDispatcher::*) ();
|
||||
using MsgFunc = void (MessageDispatcher:: *) ();
|
||||
using MsgHash = Hash <int32_t>;
|
||||
|
||||
private:
|
||||
|
|
@ -81,9 +81,9 @@ private:
|
|||
};
|
||||
|
||||
public:
|
||||
Args (float value) : float_ (value) { }
|
||||
Args (int32_t value) : long_ (value) { }
|
||||
Args (const char *value) : chars_ (value) { }
|
||||
Args (float value) : float_ (value) {}
|
||||
Args (int32_t value) : long_ (value) {}
|
||||
Args (const char *value) : chars_ (value) {}
|
||||
};
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue