Newer
Older
BlackoutClient / Assets / Player / UIHookup.cs
@Mark Mark on 1 Feb 2020 381 bytes Touch input
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class UIHookup : MonoBehaviour
{
    public RectTransform MoveTouch;
    public Canvas MainCanvas;
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}