mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -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;
|
||
|
}
|
||
|
}
|