blob: c6ad7010785f8cd2ce9f85990a73675020c2c4f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: gravity.hh
// Description: Gravity component
#ifndef SHARED_ENTITY_GRAVITY_HH
#define SHARED_ENTITY_GRAVITY_HH
#pragma once
class Dimension;
struct Gravity final {
public:
static void fixed_update(Dimension* dimension);
};
#endif
|