Remove ScoreStatistic.

This commit is contained in:
Dean Herbert 2017-04-20 11:26:02 +09:00
parent 2d5f0f6b76
commit 2a422ca5fa
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
2 changed files with 0 additions and 18 deletions

View File

@ -1,17 +0,0 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Rulesets.Scoring
{
public class ScoreStatistic
{
public readonly string Name;
public readonly object Value;
public ScoreStatistic(string name, object value)
{
Name = name;
Value = value;
}
}
}

View File

@ -156,7 +156,6 @@
<Compile Include="Database\RulesetDatabase.cs" />
<Compile Include="Rulesets\Scoring\Score.cs" />
<Compile Include="Rulesets\Scoring\ScoreProcessor.cs" />
<Compile Include="Rulesets\Scoring\ScoreStatistic.cs" />
<Compile Include="Rulesets\UI\HealthDisplay.cs" />
<Compile Include="Rulesets\UI\HudOverlay.cs" />
<Compile Include="Rulesets\UI\StandardHealthDisplay.cs" />