PlaneRect.cs 118 B

123456789101112
  1. using System;
  2. public struct PlaneRect<T>
  3. {
  4. public T left;
  5. public T top;
  6. public T right;
  7. public T bottom;
  8. }