mirror of
https://github.com/ConjureETS/GameOff2024.git
synced 2026-03-24 05:00:59 +00:00
17 lines
337 B
C#
17 lines
337 B
C#
using System;
|
|
using GameOff.Core;
|
|
using GameOff.UI.Quiz;
|
|
using UnityEngine;
|
|
|
|
namespace GameOff.Basic
|
|
{
|
|
[DefaultExecutionOrder(-200)]
|
|
public class ClearStatic: MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
PlayerMain.ClearStaticVariables();
|
|
QuestionUI.ClearStaticVariables();
|
|
}
|
|
}
|
|
} |