25 lines
244 B
C#
25 lines
244 B
C#
using System;
|
|
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
class GameState : MonoBehaviour
|
|
{
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
void OnGUI()
|
|
{
|
|
|
|
}
|
|
|
|
}
|