No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IRectInterface.cs 499B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. using UnityEditor.Graphing;
  6. using UnityEditor.ShaderGraph.Drawing.Colors;
  7. using UnityEditor.ShaderGraph.Internal;
  8. using UnityEditor.ShaderGraph.Drawing;
  9. using UnityEditor.ShaderGraph.Serialization;
  10. using UnityEngine.Assertions;
  11. using UnityEngine.Pool;
  12. namespace UnityEditor.ShaderGraph
  13. {
  14. interface IRectInterface
  15. {
  16. Rect rect
  17. {
  18. get;
  19. internal set;
  20. }
  21. }
  22. }