Feature #293 changed private list variable to protected to support custom classes

This commit is contained in:
Thimo de Ram 2021-12-05 22:38:44 +01:00 committed by Miika Lönnqvist
parent 3aa06a70a1
commit 7c372e6c38

View File

@ -40,7 +40,7 @@ namespace UnityAtoms
/// <typeparam name="T">The list item type.</typeparam>
/// <returns>The actual `List&lt;T&gt;`.</returns>
[SerializeField]
private List<T> list = new List<T>();
protected List<T> list = new List<T>();
/// <summary>
/// Add an item to the list.