mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
7763f81ede
* Unified all line endings in project to align with .editorconfig; all end-of-line characters have been set to LF and new-lines placed at the end of every file if not present.
20 lines
570 B
C#
20 lines
570 B
C#
namespace UnityAtoms
|
|
{
|
|
public static class CreateAssetMenuUtils
|
|
{
|
|
public static class Order
|
|
{
|
|
public const int VARIABLE = 0;
|
|
public const int EVENT = 1;
|
|
public const int EVENTx2 = 2;
|
|
public const int EVENT_WITH_GO = 3;
|
|
public const int CONSTANT = 4;
|
|
public const int LIST = 5;
|
|
public const int CONDITIONAL = 6;
|
|
public const int SET_VARIABLE = 7;
|
|
}
|
|
|
|
// TODO: Use interpolated strings to set menu names (need to upgrade to C#6)
|
|
}
|
|
}
|