A 2D tile-based sandbox game.
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.

BoundingBox.h 104B

123456789101112
  1. #pragma once
  2. #include "Vector2.h"
  3. namespace Swan {
  4. struct BoundingBox {
  5. Vec2 pos;
  6. Vec2 size;
  7. };
  8. }