added tooltips
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using Assets.Scripts.Actions;
|
||||
using Assets.Scripts.Actions.Interfaces;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
@@ -7,13 +7,13 @@ namespace Assets.Scripts.Buildings
|
||||
public abstract class BaseCell : MonoBehaviour
|
||||
{
|
||||
protected string _name;
|
||||
protected Dictionary<string, BaseAction> _optionsList;
|
||||
protected List<IPlayerAction> _optionsList;
|
||||
[SerializeField]
|
||||
private ConversationController _conversationController;
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
_optionsList = new Dictionary<string, BaseAction>();
|
||||
_optionsList = new List<IPlayerAction>();
|
||||
Initialize();
|
||||
BuildOptionsList();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user