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

23 lines
338 B
C#

using System;
using UnityEngine;
namespace DunGen
{
[Serializable]
public sealed class GameObjectWeight
{
public GameObject GameObject;
public float Weight = 1f;
public GameObjectWeight()
{
}
public GameObjectWeight(GameObject gameObject, float weight = 1f)
{
GameObject = gameObject;
Weight = weight;
}
}
}