15 lines
339 B
C#
15 lines
339 B
C#
namespace UI.Wheel
|
|
{
|
|
public interface IWheelReward
|
|
{
|
|
int Index { get; }
|
|
int Weight { get; }
|
|
int Quality { get; }
|
|
int DropID { get; }
|
|
string Fx { get; }
|
|
string Audio { get; }
|
|
int LeftWeight { get; }
|
|
int RoundLimit { get; }
|
|
float InflationRate { get; }
|
|
}
|
|
} |