15 lines
165 B
C#
15 lines
165 B
C#
using System;
|
|
|
|
namespace Gaia
|
|
{
|
|
public class GaiaScriptOrder : Attribute
|
|
{
|
|
public int Order;
|
|
|
|
public GaiaScriptOrder(int order)
|
|
{
|
|
Order = order;
|
|
}
|
|
}
|
|
}
|