Files
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;
}
}
}