diff options
| author | Aetias <aetias@outlook.com> | 2024-05-19 10:49:14 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-05-19 10:49:14 +0200 |
| commit | c1384df63cd5a73550fcf0928dd9ccfcd247abd5 (patch) | |
| tree | 72b6bfb53cc605d6c23cc827cd64835b020028b1 /include/Actor/ActorRef.hpp | |
| parent | 7ccd1447b0ede8cc12c1462c0af6ec95cd84f8c2 (diff) | |
Decomp `Actor`
Diffstat (limited to 'include/Actor/ActorRef.hpp')
| -rw-r--r-- | include/Actor/ActorRef.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Actor/ActorRef.hpp b/include/Actor/ActorRef.hpp index b98c86a9..5c9bc461 100644 --- a/include/Actor/ActorRef.hpp +++ b/include/Actor/ActorRef.hpp @@ -7,4 +7,9 @@ struct ActorRef { /* 0 */ s32 id; /* 4 */ s32 index; /* 8 */ + + inline ActorRef() { + id = -1; + index = -1; + } }; |
