mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 03:08:41 +00:00
28 lines
487 B
C
28 lines
487 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_ENTITY_SIZE_H
|
|
#define TOS_ENTITY_SIZE_H
|
|
|
|
enum EntitySize {
|
|
ENTITY_SIZE_32,
|
|
ENTITY_SIZE_64,
|
|
ENTITY_SIZE_128,
|
|
ENTITY_SIZE_256,
|
|
ENTITY_SIZE_512,
|
|
ENTITY_SIZE_1024,
|
|
ENTITY_SIZE_2048,
|
|
ENTITY_SIZE_4096,
|
|
ENTITY_SIZE_8192,
|
|
ENTITY_SIZE_16384,
|
|
ENTITY_SIZE_32768,
|
|
ENTITY_SIZE_65536,
|
|
ENTITY_SIZE_SIZE
|
|
};
|
|
|
|
#endif |