I’m trying to create a list within C# and I’m getting the error: Assets/Scripts/LevelHandler.cs(6,16): error CS0246: The type or namespace name `List’ could not be found. Are you missing a using directive or an assembly reference?
Isn’t this the setup for creating lists?
using UnityEngine;
using System.Collections.Generic; /*This should be used for LIST to work, right?*/
public class LevelHandler : MonoBehaviour {
public List items = new List();
}