libtransistor
A userland library for the Nintendo Switch
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
rect.h
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include<libtransistor/types.h>
13 
18 typedef struct {
19  uint32_t left;
20  uint32_t top;
21  uint32_t right;
22  uint32_t bottom;
23 } rect_t;
24 
25 #ifdef __cplusplus
26 }
27 #endif
Various system types.
A simple rectangle.
Definition: rect.h:18