mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
19 lines
353 B
C#
19 lines
353 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
[Serializable]
|
|
public class IconAssigmentSetting
|
|
{
|
|
public IconAssigmentSetting(string assetPath, string iconPath)
|
|
{
|
|
AssetPath = assetPath;
|
|
IconPath = iconPath;
|
|
}
|
|
|
|
public string AssetPath;
|
|
public string IconPath;
|
|
}
|
|
}
|