Vic
public text v1 · immutable public class ScreenExample : Screen
{
public ScreenExample()
: base("ScreenExample")
{
}
public override void Initialize(bool addToManagers)
{
base.Initialize(addToManagers);
if(addToManagers)
{
AddToManagers();
}
}
public override void AddToManagers()
{
base.AddToManagers();
}
public override void Activity(bool firstTimeCalled)
{
base.Activity(firstTimeCalled);
}
public override void Destroy()
{
base.Destroy();
}
}