LeviLamina
Loading...
Searching...
No Matches
ConstCompositeSceneStackView.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class ISceneStack;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const> mMainStack;
18 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const> mClientInstanceStack;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ConstCompositeSceneStackView();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI ConstCompositeSceneStackView(
29 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const& mainStack,
30 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const& clientInstanceStack
31 );
32
33 MCAPI ::std::string getTopScreenName() const;
34
35 MCAPI ~ConstCompositeSceneStackView();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(
42 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const& mainStack,
43 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack const> const& clientInstanceStack
44 );
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
Definition ConstCompositeSceneStackView.h:5
Definition ISceneStack.h:5