mirror of
https://github.com/osukey/osukey.git
synced 2025-05-07 06:37:18 +09:00
14 lines
318 B
C#
14 lines
318 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
namespace osu.Game.Modes.Osu.Objects
|
|
{
|
|
public enum HitObjectType
|
|
{
|
|
Circle,
|
|
Slider,
|
|
Spinner,
|
|
SliderTick
|
|
}
|
|
}
|