10 lines
185 B
C#
10 lines
185 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class SpawnableOutsideObjectWithRarity
|
|
{
|
|
public SpawnableOutsideObject spawnableObject;
|
|
|
|
public AnimationCurve randomAmount;
|
|
}
|