mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-21 23:58:49 -05:00
Feature #293 changed private list variable to protected to support custom classes
This commit is contained in:
parent
3aa06a70a1
commit
7c372e6c38
@ -40,7 +40,7 @@ namespace UnityAtoms
|
||||
/// <typeparam name="T">The list item type.</typeparam>
|
||||
/// <returns>The actual `List<T>`.</returns>
|
||||
[SerializeField]
|
||||
private List<T> list = new List<T>();
|
||||
protected List<T> list = new List<T>();
|
||||
|
||||
/// <summary>
|
||||
/// Add an item to the list.
|
||||
|
Loading…
Reference in New Issue
Block a user