core: hle: kernel: object: Implement Finalize() virtual method.

This commit is contained in:
bunnei
2021-01-28 21:42:26 -08:00
parent 33b4930280
commit ff186b2498
15 changed files with 29 additions and 6 deletions
+2
View File
@@ -61,6 +61,8 @@ public:
*/
bool IsWaitable() const;
virtual void Finalize() = 0;
protected:
/// The kernel instance this object was created under.
KernelCore& kernel;