1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 23:13:20 +08:00
osu-lazer/osu.Game/Rulesets/Scoring/ScoreStatistic.cs
2017-04-19 16:29:27 +09:00

18 lines
457 B
C#

// 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;
}
}
}