/****************************************************************************
* Copyright 2019 Nreal Techonology Limited. All rights reserved.
*
* This file is part of NRSDK.
*
* https://www.nreal.ai/
*
*****************************************************************************/
namespace NRKernal
{
using System;
/// Ammend the order of script.
public class ScriptOrder : Attribute
{
/// The order.
public int order;
/// Constructor.
/// The order.
public ScriptOrder(int order)
{
this.order = order;
}
}
}