MatchmakerClient-Unity/ThreadObject.cs
2023-01-15 13:55:38 -08:00

19 lines
373 B
C#
Executable file

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Scripts.CustomServer;
public class ThreadObject : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
ThreadManager.Start();
}
// Update is called once per frame
void Update()
{
ThreadManager.UpdateMain();
}
}