Newer
Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class OpponentController : Controller
{
public static event Action<int> handChange;
private float offsetDistance;
void Start()
{
currentHand = 1;
if (handChange != null)
{
handChange(currentHand);
}
myTurn = false;
}
public override void changeTurn()