mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
8fd9f2ab5d
* start JSystem * JKRAram and JUTGamePad * started heap and thread * more JKernel * mostly finished JKernel * delete unused asm * JKRFileFinder * delete unused asm and match findNextFile * format * fix mtx_vec
10 lines
259 B
C
10 lines
259 B
C
#ifndef JKRCOMPREESION_H_
|
|
#define JKRCOMPREESION_H_
|
|
|
|
typedef int JKRCompression;
|
|
const JKRCompression COMPRESSION_NONE = 0;
|
|
const JKRCompression COMPRESSION_YAY0 = 1;
|
|
const JKRCompression COMPRESSION_YAZ0 = 2;
|
|
const JKRCompression COMPRESSION_ASR = 3;
|
|
|
|
#endif |