mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:47:43 +00:00
CRelayTracker: Add names to function prototypes
Allows IDE introspections at call sites to function nicer.
This commit is contained in:
@@ -29,13 +29,13 @@ class CRelayTracker {
|
||||
|
||||
public:
|
||||
CRelayTracker() = default;
|
||||
CRelayTracker(CBitStreamReader&, const CSaveWorld&);
|
||||
CRelayTracker(CBitStreamReader& in, const CSaveWorld& saveWorld);
|
||||
|
||||
bool HasRelay(TEditorId) const;
|
||||
void AddRelay(TEditorId);
|
||||
void RemoveRelay(TEditorId);
|
||||
void SendMsgs(TAreaId, CStateManager&);
|
||||
void PutTo(CBitStreamWriter&, const CSaveWorld&);
|
||||
bool HasRelay(TEditorId id) const;
|
||||
void AddRelay(TEditorId id);
|
||||
void RemoveRelay(TEditorId id);
|
||||
void SendMsgs(TAreaId areaId, CStateManager& stateMgr);
|
||||
void PutTo(CBitStreamWriter& out, const CSaveWorld& saveWorld);
|
||||
};
|
||||
|
||||
} // namespace urde
|
||||
|
||||
Reference in New Issue
Block a user