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