summaryrefslogtreecommitdiffstats
path: root/game/shared/entity/gravity.hh
blob: 064f92dfab6c31e6e4f075a79af4a0209cd4db1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SHARED_ENTITY_GRAVITY_HH
#define SHARED_ENTITY_GRAVITY_HH 1
#pragma once

namespace world
{
class Dimension;
} // namespace world

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

#endif // SHARED_ENTITY_GRAVITY_HH