mirror of
https://github.com/maxartz15/MA_TextureAtlasser.git
synced 2024-11-09 23:42:56 +01:00
max
78e4fb0ad1
Added '#if UNITY_EDITOR' to all the scripts that should only run/be used in the editor.
21 lines
351 B
C#
21 lines
351 B
C#
#if UNITY_EDITOR
|
|
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;
|
|
}
|
|
}
|
|
#endif |