Add more timing and sample related classes.

This commit is contained in:
Dean Herbert
2016-08-31 13:51:00 +09:00
parent 3098204dda
commit abe8ff21f6
8 changed files with 87 additions and 1 deletions

View File

@ -0,0 +1,16 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Beatmaps.Timing
{
public class ControlPoint
{
public double Time;
}
}