1
0
mirror of synced 2026-02-05 16:16:10 +00:00

use signed integers for coordinates.

This commit is contained in:
Eric Smith
2002-01-02 10:17:48 +00:00
parent 1d371905a7
commit 8996dcd2b2
3 changed files with 14 additions and 8 deletions

3
type.h
View File

@@ -1,4 +1,7 @@
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef int s32;
typedef int boolean;