12 lines
371 B
Rust
12 lines
371 B
Rust
use super::CapFlags;
|
|
|
|
pub const NONE: CapFlags = 0;
|
|
pub const SYSTEM: CapFlags = 1 << 0;
|
|
pub const GFX: CapFlags = 1 << 1;
|
|
pub const AUDIO: CapFlags = 1 << 2;
|
|
pub const FS: CapFlags = 1 << 3;
|
|
pub const LOG: CapFlags = 1 << 4;
|
|
pub const ASSET: CapFlags = 1 << 5;
|
|
pub const BANK: CapFlags = 1 << 6;
|
|
pub const ALL: CapFlags = SYSTEM | GFX | AUDIO | FS | LOG | ASSET | BANK;
|