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

This commit is contained in:
bunnei 2021-01-16 00:25:29 -08:00
parent 3cefddbb47
commit eb3a02a3fd
15 changed files with 29 additions and 6 deletions

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;