Move replays to an wrapping Score class

This commit is contained in:
smoogipoo
2018-11-28 18:45:17 +09:00
parent 219929eb47
commit b8e60afa69
12 changed files with 88 additions and 70 deletions

13
osu.Game/Scoring/Score.cs Normal file
View File

@ -0,0 +1,13 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Replays;
namespace osu.Game.Scoring
{
public class Score
{
public ScoreInfo ScoreInfo = new ScoreInfo();
public Replay Replay = new Replay();
}
}