mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Move replays to an wrapping Score class
This commit is contained in:
13
osu.Game/Scoring/Score.cs
Normal file
13
osu.Game/Scoring/Score.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user