Moved enum

This commit is contained in:
MrGadget 2019-11-02 01:49:46 -04:00 committed by GitHub
parent f70a2ac702
commit 2795b81e97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,16 +25,16 @@ using UnityEngine;
using System.Collections;
using Mirror;
public enum EquippedItem : byte
{
nothing,
ball,
box,
cylinder
}
public class PlayerEquip : NetworkBehaviour
{
public enum EquippedItem : byte
{
nothing,
ball,
box,
cylinder
}
public GameObject sceneObjectPrefab;
public GameObject rightHand;