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

24 lines
338 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
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;
}
}
}