mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 04:23:04 +00:00
12 lines
204 B
C#
12 lines
204 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Behaviours
|
|
{
|
|
public class LoadProcessStarter : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
Loader.StartLoading();
|
|
}
|
|
}
|
|
}
|