11 lines
136 B
C#
11 lines
136 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class IntWithRarity
|
|
{
|
|
public int id;
|
|
|
|
[Range(0f, 300f)]
|
|
public int rarity;
|
|
}
|