15 lines
278 B
C++
15 lines
278 B
C++
#pragma once
|
|
|
|
#include <td/simulation/WorldTicker.h>
|
|
|
|
namespace td {
|
|
namespace sim {
|
|
|
|
class EntityMove : public IWorldSystem {
|
|
public:
|
|
virtual void Tick(const game::World& a_World, WorldSnapshot& a_State, FpFloat a_Delta) override;
|
|
};
|
|
|
|
} // namespace sim
|
|
} // namespace td
|