1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 15:17:51 +08:00
osu-lazer/osu.Game/GameModes/Play/Playfield.cs
2016-09-21 13:21:55 +09:00

18 lines
410 B
C#

//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics.Containers;
namespace osu.Game.GameModes.Play
{
public class Playfield : Container
{
public override void Load()
{
base.Load();
Masking = true;
}
}
}