LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/SpawnableItemWithRarity.cs

12 lines
158 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
using UnityEngine;
[Serializable]
public class SpawnableItemWithRarity
{
public Item spawnableItem;
[Range(0f, 100f)]
public int rarity;
}