1
0
Fork 0
crew-of-one/Assets/Scripts/terminal.cs
Ava Gaiety Wroten 0cc43d7fb3 Initial Commit
2020-07-30 13:17:01 -05:00

13 lines
226 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class terminal : MonoBehaviour
{
public GameObject screen;
void Start()
{
screen.SetActive(false);
}
}