osu/osu.Game/Beatmaps/Legacy/LegacyOrigins.cs

20 lines
422 B
C#
Raw Normal View History

2019-12-13 10:14:49 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2019-12-10 11:23:15 +00:00
namespace osu.Game.Beatmaps.Legacy
{
internal enum LegacyOrigins
{
TopLeft,
Centre,
CentreLeft,
TopRight,
BottomCentre,
TopCentre,
Custom,
CentreRight,
BottomLeft,
BottomRight
}
}