mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
9 lines
181 B
C++
9 lines
181 B
C++
#pragma once
|
|
|
|
// for things that are used in stackswitchers to be able to be told when they're switched to
|
|
|
|
class INotifySwitched {
|
|
public:
|
|
virtual void on_switched_to() {};
|
|
};
|