mirror of
https://github.com/ConjureETS/GameOff2024.git
synced 2026-03-23 20:50:57 +00:00
15 lines
267 B
C#
15 lines
267 B
C#
using System;
|
|
using GameOff.Core;
|
|
using UnityEngine;
|
|
|
|
namespace GameOff.Basic
|
|
{
|
|
[DefaultExecutionOrder(-200)]
|
|
public class ClearStatic: MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
PlayerMain.ClearStaticVariables();
|
|
}
|
|
}
|
|
} |