mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
17 lines
313 B
C#
17 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
[Serializable]
|
|
public class IconAssigmentSettingsList
|
|
{
|
|
public IconAssigmentSettingsList()
|
|
{
|
|
List = new List<IconAssigmentSetting>();
|
|
}
|
|
|
|
public List<IconAssigmentSetting> List;
|
|
}
|
|
}
|