diff options
Diffstat (limited to 'source/game/interfaces')
-rw-r--r-- | source/game/interfaces/StarEntity.cpp | 2 | ||||
-rw-r--r-- | source/game/interfaces/StarToolUserItem.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/game/interfaces/StarEntity.cpp b/source/game/interfaces/StarEntity.cpp index 801a0d8..cbc968f 100644 --- a/source/game/interfaces/StarEntity.cpp +++ b/source/game/interfaces/StarEntity.cpp @@ -111,7 +111,7 @@ Maybe<Json> Entity::receiveMessage(ConnectionId, String const&, JsonArray const& return {}; } -void Entity::update(float dt, uint64_t) {} +void Entity::update(float, uint64_t) {} void Entity::render(RenderCallback*) {} diff --git a/source/game/interfaces/StarToolUserItem.cpp b/source/game/interfaces/StarToolUserItem.cpp index 104b513..8191cec 100644 --- a/source/game/interfaces/StarToolUserItem.cpp +++ b/source/game/interfaces/StarToolUserItem.cpp @@ -14,7 +14,7 @@ void ToolUserItem::uninit() { m_hand = {}; } -void ToolUserItem::update(float dt, FireMode, bool, HashSet<MoveControlType> const&) {} +void ToolUserItem::update(float, FireMode, bool, HashSet<MoveControlType> const&) {} bool ToolUserItem::initialized() const { return (bool)m_owner; |