diff --git a/doc/Guides/GameObjects/PickupDropChild.md b/doc/Guides/GameObjects/PickupDropChild.md index 0736dfb68..81384c6cc 100644 --- a/doc/Guides/GameObjects/PickupDropChild.md +++ b/doc/Guides/GameObjects/PickupDropChild.md @@ -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;