Firstborn/Assets/Scripts/NPCUtil.cs
Schaken-Mods 5557c03691 Made lockpicking for doors
Finished making lockpicking for doors. Next I will make one for chests with a different type of lock, also increase skill points when successfully picked a lock.
2023-04-29 23:04:18 -05:00

22 lines
379 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NPCUtil : MonoBehaviour
{
[SerializeField] public RandomLook RL;
[SerializeField] public SpeechBlend SB;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}