LeviLamina
Loading...
Searching...
No Matches
PreloadState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Resources {
6
7enum class PreloadState : int {
8 ExistsAndContentsPreloaded = 0,
9 ExistsAndContentsNotPreloaded = 1,
10 DoesNotExist = 2,
11 ExistenceUndetermined = 3,
12};
13
14}