LeviLamina
Loading...
Searching...
No Matches
BaseScriptComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::internal {
6
7struct BaseScriptComponent {
8public:
9 // member variables
10 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BaseScriptComponent& operator=(BaseScriptComponent const&);
25 BaseScriptComponent(BaseScriptComponent const&);
26 BaseScriptComponent();
27};
28
29} // namespace Scripting::internal
Definition Alias.h:14