Add concept of ScoreProcessor.

This commit is contained in:
Dean Herbert
2016-11-29 20:30:16 +09:00
parent 9871960112
commit 9d2a69f1e2
11 changed files with 44 additions and 9 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.Modes
{
public class ScoreProcessor
{
public virtual Score GetScore() => new Score();
}
}