15 lines
350 B
C#
15 lines
350 B
C#
namespace Capsule.Reward
|
|
{
|
|
public interface ICapsuleReward
|
|
{
|
|
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; }
|
|
}
|
|
} |