15 lines
214 B
C#
15 lines
214 B
C#
using System;
|
|
|
|
namespace Fluxy
|
|
{
|
|
|
|
public class ExecutionOrder : Attribute
|
|
{
|
|
public int order;
|
|
|
|
public ExecutionOrder(int order)
|
|
{
|
|
this.order = order;
|
|
}
|
|
}
|
|
} |