ScriptOrder.cs 1.1 KB

123456789101112131415161718192021222324252627
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal
  10. {
  11. using System;
  12. /// <summary> Ammend the order of script. </summary>
  13. public class ScriptOrder : Attribute
  14. {
  15. /// <summary> The order. </summary>
  16. public int order;
  17. /// <summary> Constructor. </summary>
  18. /// <param name="order"> The order.</param>
  19. public ScriptOrder(int order)
  20. {
  21. this.order = order;
  22. }
  23. }
  24. }