LeviLamina
Loading...
Searching...
No Matches
IScriptRef.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7class IScriptRef {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~IScriptRef() = default;
12
13 virtual void onReduceToSingleOwner() = 0;
14
15 virtual void onPromoteToMultipleOwners() = 0;
16
17 virtual void onFinalize() = 0;
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
26
27} // namespace Scripting
Definition IScriptRef.h:7