You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
20 lines
514 B
C#
20 lines
514 B
C#
using UnityEngine;
|
|
|
|
namespace SmartPoint.AssetAssistant.Forms
|
|
{
|
|
[CreateAssetMenu]
|
|
public abstract class MessageBoxManifestBase : ScriptableObject
|
|
{
|
|
public GameObject windowPrefab;
|
|
public GameObject buttonPrefab;
|
|
public GameObject buttonSeparatorPrefab;
|
|
public string captionTextObjectName;
|
|
public string messageTextObjectName;
|
|
public string buttonLayoutObjectName;
|
|
|
|
protected MessageBoxManifestBase()
|
|
{
|
|
//
|
|
}
|
|
}
|
|
} |