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

13 lines
240 B
C#

using System.Collections.Generic;
using UnityEngine;
[ExecuteInEditMode]
public class ES3GameObject : MonoBehaviour
{
public List<Component> components = new List<Component>();
private void Update()
{
_ = Application.isPlaying;
}
}