19 lines
373 B
C#
Executable file
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();
|
|
}
|
|
}
|