BsRectOffset.h 208 B

123456789101112131415
  1. #pragma once
  2. #include "BsPrerequisites.h"
  3. namespace BansheeEngine
  4. {
  5. struct RectOffset
  6. {
  7. RectOffset()
  8. :left(0), right(0), top(0), bottom(0)
  9. { }
  10. INT32 left, right, top, bottom;
  11. };
  12. }