osu/osu.Game/GameModes/Play/Playfield.cs

19 lines
449 B
C#
Raw Normal View History

//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-10-10 08:17:26 +00:00
using osu.Framework;
using osu.Framework.Graphics.Containers;
namespace osu.Game.GameModes.Play
{
2016-09-21 04:12:05 +00:00
public class Playfield : Container
{
2016-10-10 08:17:26 +00:00
public override void Load(BaseGame game)
2016-09-21 04:21:55 +00:00
{
2016-10-10 08:17:26 +00:00
base.Load(game);
2016-09-21 04:21:55 +00:00
Masking = true;
}
}
}