LeviLamina
Loading...
Searching...
No Matches
ResourceInformation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ResourceInformation inner types define
8 enum class ResourceType : int {
9 Invalid = 0,
10 Resources = 1,
11 DataAddOn = 2,
12 ScriptAddOn = 3,
13 ClientScriptAddOn = 4,
14 Mandatory = 5,
15 WorldTemplate = 6,
16 Count = 7,
17 };
18
19public:
20 // member variables
21 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
34
35public:
36 // member functions
37 // NOLINTBEGIN
39
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCAPI static ::ResourceInformation::ResourceType ResourceTypeFromString(::std::string const& value);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::ResourceInformation const&);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60};
Definition ResourceInformation.h:5
Definition Alias.h:14