summaryrefslogtreecommitdiffstats
path: root/src/game/shared/entity/gravity.hh
blob: 21f45827389130fdb4c2cfa467beafaa0af66cd4 (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