14 lines
323 B
C#
14 lines
323 B
C#
using System;
|
|
using Cielonos.Core.Interaction;
|
|
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame.Interactions
|
|
{
|
|
public class TechCenter : InteractableObjectBase
|
|
{
|
|
protected override void InitializeChoices()
|
|
{
|
|
choices.Add(new InteractionChoice("Enter Tech Center", null));
|
|
}
|
|
}
|
|
} |