Files
Slendytubbies-V2-Beta/V2Beta/Assets/Scripts/Assembly-UnityScript/coopday.cs
T
2026-05-24 12:14:04 +02:00

20 lines
310 B
C#

using System;
using UnityEngine;
[Serializable]
public class coopday : MonoBehaviour
{
public bool clicked;
public virtual void OnMouseDown()
{
clicked = !clicked;
Application.LoadLevel(1);
Debug.Log("clicked credits" + ((!clicked) ? " off" : string.Empty));
}
public virtual void Main()
{
}
}