1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-29 10:12:56 +08:00
osu-lazer/osu.Game/Beatmaps/Events/Event.cs

14 lines
362 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
namespace osu.Game.Beatmaps.Events
{
2017-05-17 17:42:48 +08:00
public abstract class Event
{
2017-05-17 17:42:48 +08:00
/// <summary>
/// The event start time.
/// </summary>
public double StartTime;
}
2017-05-17 17:42:48 +08:00
}