added tooltips

This commit is contained in:
Vladimir Koshevarov
2022-11-29 19:09:00 +02:00
parent 2167b43c29
commit 73f06d8754
33 changed files with 1264 additions and 250 deletions
+3 -3
View File
@@ -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();
}