blob: dfb97b3ad536e5d4c400a5a3bbabc19bb35e31c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: stasis.hh
// Description: Freeze entites that are in an unloaded chunk
#ifndef SHARED_ENTITY_STASIS_HH
#define SHARED_ENTITY_STASIS_HH
#pragma once
class Dimension;
// Attached to entities with transform values
// out of bounds in a specific dimension
struct Stasis final {
public:
static void fixed_update(Dimension* dimension);
};
#endif
|