summaryrefslogtreecommitdiffstats
path: root/game/shared/entity/gravity.hh
blob: 2cbcbbc8b12ba5737bacdf863f1787cf83fb0f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

namespace world
{
class Dimension;
} // namespace world

namespace entity
{
struct Gravity final {
public:
    static void fixed_update(world::Dimension* dimension);
};
} // namespace entity