gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-support/png2asset/vector2.h
1 #pragma once
2
3 struct Vector2Position {
4
5 int x, y;
6 };
7
8
9 struct Vector2Size {
10
11 size_t width,height;
12 };
13
14
15 struct Rectangle {
16
17 int x, y;
18 size_t width, height;
19 };
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.