struct IGameObjectSystemSink { };
IGameObjectSystem.h
A callback interface for a class that wants to be aware when new game objects are being spawned. A class that implements this interface will be called every time a new game object is spawned.
virtual ~IGameObjectSystemSink();
virtual void OnAfterInit(IGameObject* object) = 0;
This callback is called after this game object is initialized.