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.

BodyTrait.cc 140B

1234567891011
  1. #include "traits/BodyTrait.h"
  2. #include "Win.h"
  3. namespace Swan {
  4. void BodyTrait::Body::outline(Win &win) {
  5. win.drawRect(pos, size);
  6. }
  7. }