StellarXipher/Assets/tablet/TabletScript.cs
EthanPisani a815e2b93d
Some checks failed
Build project / Build for (StandaloneWindows64, 6000.0.37f1) (push) Has been cancelled
Build project / Publish to itch.io (StandaloneLinux64) (push) Has been cancelled
Build project / Publish to itch.io (StandaloneWindows64) (push) Has been cancelled
Build project / Build for (StandaloneLinux64, 6000.0.37f1) (push) Has been cancelled
added tablet open animation
2025-03-15 21:32:01 -04:00

18 lines
323 B
C#

using UnityEngine;
public class TabletScript : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
public bool puzzleComplete = false;
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}