MatchmakerClient-Unity/ThreadObject.cs

20 lines
373 B
C#
Raw Permalink Normal View History

2023-01-15 13:55:38 -08:00
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();
}
}