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

11 lines
160 B
C#

using System;
using UnityEngine;
[Serializable]
public class SpawnableEnemyWithRarity
{
public EnemyType enemyType;
[Range(0f, 100f)]
public int rarity;
}