using UnityEngine; namespace BrewMonster.Scripts { // this script holds reference to the default equipments for the player model public class PlayerDefaultEquipments : MonoBehaviour { public GameObject DefaultUpper; public GameObject DefaultLower; public GameObject DefaultWirst; public GameObject DefaultFoot; } }