mirror of
https://github.com/maxartz15/MA_TextureAtlasser.git
synced 2024-11-14 01:15:37 +01:00
20 lines
328 B
C#
20 lines
328 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace MA_TextureAtlasserPro
|
|||
|
{
|
|||
|
[System.Serializable]
|
|||
|
public class MA_TextureGroup
|
|||
|
{
|
|||
|
public string name;
|
|||
|
public Texture texture = null;
|
|||
|
}
|
|||
|
|
|||
|
[System.Serializable]
|
|||
|
public class MA_TextureGroupRegistration
|
|||
|
{
|
|||
|
public string name;
|
|||
|
}
|
|||
|
}
|