rabidus-test/Assets/PolyFew/Scripts/NonEditor/RefreshEnforcer.cs

22 lines
431 B
C#
Raw Normal View History

2023-10-20 13:29:44 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BrainFailProductions.PolyFew
{
[ExecuteInEditMode]
public class RefreshEnforcer : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
DestroyImmediate(this);
}
// Update is called once per frame
void Update()
{
}
}
}