Cleaning up using statements

This commit is contained in:
Amaan Shawkath
2023-07-08 14:32:59 +01:00
parent 5b1085fc65
commit 94097c2308
4 changed files with 1 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
@@ -13,6 +12,6 @@ public class CharacterData : ScriptableObject
public int m_intelligence;
public int m_money;
// Note - the index of the dialogue will control what question it is linked too.
[Header("The index of the dialogue relates to what question it should link too.")]
public List<Dialogue> m_dialogueOptions;
}

View File

@@ -1,6 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class Dialogue

View File

@@ -1,4 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

View File

@@ -1,5 +1,4 @@
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;