Files
beyond/Assets/ThirdParty/Procedural Worlds/Gaia/Scripts/Utils/GaiaScriptOrder.cs
2024-11-20 15:21:28 +01:00

14 lines
209 B
C#

using System;
namespace Gaia
{
public class GaiaScriptOrder : Attribute
{
public int Order;
public GaiaScriptOrder(int order)
{
Order = order;
}
}
}