Projekt

Obecné

Profil

Stáhnout (292 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 f4e5d893 Oto Šťáva
using System;
2
using UnityEngine;
3
4
namespace DeltaRobotVr
5
{
6
    public class MainScript : MonoBehaviour
7
    {
8
        private void Start()
9
        {
10
            Client.Instance.Start();
11
        }
12
13
        private void OnDestroy()
14
        {
15
            Client.Instance.Stop();
16
        }
17
    }
18
}