16 lines
365 B
C#
16 lines
365 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace EPOOutline
|
|||
|
|
{
|
|||
|
|
public class SerializedPassInfoAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
public readonly string Title;
|
|||
|
|
public readonly string ShadersFolder;
|
|||
|
|
|
|||
|
|
public SerializedPassInfoAttribute(string title, string shadersFolder)
|
|||
|
|
{
|
|||
|
|
Title = title;
|
|||
|
|
ShadersFolder = shadersFolder;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|