mirror of
https://github.com/ppy/osu.git
synced 2025-01-22 07:52:56 +08:00
19 lines
449 B
C#
19 lines
449 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;
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.GameModes.Play
|
|
{
|
|
public class Playfield : Container
|
|
{
|
|
public override void Load(BaseGame game)
|
|
{
|
|
base.Load(game);
|
|
|
|
Masking = true;
|
|
}
|
|
}
|
|
}
|