mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 23:13:20 +08:00
18 lines
457 B
C#
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;
|
|
}
|
|
}
|
|
}
|