Ejemplo n.º 1
0
        public TouhouPlayfield(TouhouHealthProcessor healthProcessor)
        {
            this.healthProcessor = healthProcessor;

            InternalChildren = new Drawable[]
            {
                new TouhouBackground(),
                new Container
                {
                    RelativeSizeAxes = Axes.Both,
                    Masking          = true,
                    Children         = new Drawable[]
                    {
                        HitObjectContainer,
                        Player = new TouhouPlayer()
                    }
                }
            };
        }
Ejemplo n.º 2
0
 public override HealthProcessor CreateHealthProcessor(double drainStartTime) => HealthProcessor = new TouhouHealthProcessor();