hle: kernel: Remove deprecated Object class.

This commit is contained in:
bunnei
2021-04-23 21:50:04 -07:00
parent 864841eb9e
commit bf380b8584
39 changed files with 34 additions and 423 deletions

View File

@ -212,16 +212,6 @@ public:
return move_handles.at(index);
}
template <typename T>
T* GetCopyObject(std::size_t index) {
return DynamicObjectCast<T>(copy_objects.at(index));
}
template <typename T>
T* GetMoveObject(std::size_t index) {
return DynamicObjectCast<T>(move_objects.at(index));
}
void AddMoveObject(KAutoObject* object) {
move_objects.emplace_back(object);
}