mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
20 lines
491 B
C
20 lines
491 B
C
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
#include "irrlichttypes.h"
|
|
|
|
enum ModifiedState : u16
|
|
{
|
|
// Has not been modified.
|
|
MOD_STATE_CLEAN = 0,
|
|
MOD_RESERVED1 = 1,
|
|
// Has been modified, and will be saved when being unloaded.
|
|
MOD_STATE_WRITE_AT_UNLOAD = 2,
|
|
MOD_RESERVED3 = 3,
|
|
// Has been modified, and will be saved as soon as possible.
|
|
MOD_STATE_WRITE_NEEDED = 4,
|
|
MOD_RESERVED5 = 5,
|
|
};
|