12 lines
185 B
C#
12 lines
185 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Misaki.ArtToolEditor
|
|
{
|
|
[Serializable]
|
|
public struct LightPreset
|
|
{
|
|
public string Name;
|
|
public Light Light;
|
|
}
|
|
} |