summaryrefslogtreecommitdiffstats
path: root/src/game/server/world/inhabited.hh
blob: fa34eb2996b87f009f78eb9acbda069ce2b131ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: inhabited.hh
// Description: Flag component for chunks that should be saved on disk

#ifndef SERVER_WORLD_INHABITED_HH
#define SERVER_WORLD_INHABITED_HH
#pragma once

struct Inhabited final {};

#endif