10 lines
228 B
C#
10 lines
228 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ComputerBehaviour : MonoBehaviour, IInteractable {
|
|
public void Interact() {
|
|
HUDManager.Instance.ShowComputerHUD();
|
|
}
|
|
}
|