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

12 lines
136 B
C#
Raw Normal View History

2023-12-22 23:28:38 +00:00
using System;
using UnityEngine;
[Serializable]
public class IntWithRarity
{
public int id;
[Range(0f, 300f)]
public int rarity;
}