LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/IntWithRarity.cs
2023-12-22 18:30:14 -05:00

11 lines
136 B
C#

using System;
using UnityEngine;
[Serializable]
public class IntWithRarity
{
public int id;
[Range(0f, 300f)]
public int rarity;
}