14 lines
364 B
C#
14 lines
364 B
C#
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;
|
|
}
|
|
}
|