18 lines
303 B
C#
18 lines
303 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using Photon.Pun;
|
|
|
|
public class BowOwnership : MonoBehaviourPunCallbacks
|
|
{
|
|
|
|
public void SetOwner()
|
|
{
|
|
/*if (Physics.SphereCast())
|
|
{
|
|
photonView.TransferOwnership();
|
|
}*/
|
|
}
|
|
|
|
}
|