All pastes #2027350 Raw Edit

Vic

public text v1 · immutable
#2027350 ·published 2010-12-23 16:48 UTC
rendered paste body
    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();
        }
    }