Example #1
0
        protected override void OnLoad()
        {
            base.OnLoad();

            for (var i = 0; i < 128; i++)
            {
                 SetText(i, "", 0, i * 16.0f);
            }
            backBrush = new SolidBrush(Color.FromArgb(64, 0, 0, 0));

            cc = MMW.FindGameComponents <ColorCollecter>()[0];
        }
Example #2
0
 public IGameComponent[] FindGameComponents(Predicate <IGameComponent> match)
 {
     return(MMW.FindGameComponents((Predicate <GameComponent>)match));
 }