LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/TransformAndName.cs
2023-12-22 19:30:32 -05:00

19 lines
330 B
C#

using System;
using UnityEngine;
[Serializable]
public class TransformAndName
{
public Transform transform;
public string name;
public bool isNonPlayer;
public TransformAndName(Transform newTransform, string newName, bool nonPlayer = false)
{
name = newName;
transform = newTransform;
isNonPlayer = nonPlayer;
}
}