Skip to content

CallbackConfig Class

C#
public class CallbackConfig : IConfigurator

Inheritance object

Implements IConfigurator

C#
public CallbackConfig()
C#
public EventHandler<GameHost>? event_Started { get; set; }
C#
public EventHandler<GameHost>? event_Ending { get; set; }
C#
public EventHandler<GameHost>? event_FrameUpdate { get; set; }
C#
public EventHandler<GameHost>? event_FrameRender { get; set; }

Called by the Builder; Runs the specific config for this object.

C#
public void Run(BuilderBase config, GameHost game)

config BuilderBase
The builder configuration object.

game GameHost
The game object being created.