LeviLamina
Loading...
Searching...
No Matches
CloudSaveLevelInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8// clang-format on
9
10class CloudSaveLevelInfo {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> mDriveItemId;
15 ::ll::TypedStorage<8, 32, ::std::string> mCTag;
16 ::ll::TypedStorage<8, 32, ::std::string> mUserId;
17 ::ll::TypedStorage<8, 32, ::std::string> mFileName;
18 ::ll::TypedStorage<1, 1, bool> mNeedsUpload;
19 ::ll::TypedStorage<8, 32, ::std::string> mLastUpdated;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 CloudSaveLevelInfo();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI CloudSaveLevelInfo(::CloudSaveLevelInfo const&);
30
31 MCAPI explicit CloudSaveLevelInfo(::CompoundTag const& tag);
32
33#ifdef LL_PLAT_C
34 MCAPI CloudSaveLevelInfo(
35 ::std::string driveItemId,
36 ::std::string cTag,
37 ::std::string userId,
38 ::std::string filename,
39 ::std::string lastUpdated,
40 bool needsUpload
41 );
42#endif
43
44 MCAPI ::CloudSaveLevelInfo& operator=(::CloudSaveLevelInfo&&);
45
46 MCAPI ::CloudSaveLevelInfo& operator=(::CloudSaveLevelInfo const&);
47
48#ifdef LL_PLAT_C
49 MCAPI bool operator==(::CloudSaveLevelInfo const& other) const;
50#endif
51
52 MCAPI void serialize(::CompoundTag& tag) const;
53
54 MCAPI ~CloudSaveLevelInfo();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(::CloudSaveLevelInfo const&);
61
62 MCAPI void* $ctor(::CompoundTag const& tag);
63
64#ifdef LL_PLAT_C
65 MCAPI void* $ctor(
66 ::std::string driveItemId,
67 ::std::string cTag,
68 ::std::string userId,
69 ::std::string filename,
70 ::std::string lastUpdated,
71 bool needsUpload
72 );
73#endif
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79 MCFOLD void $dtor();
80 // NOLINTEND
81};
Definition CompoundTag.h:18