ablescript/src/const.rs

17 lines
563 B
Rust
Raw Normal View History

2021-04-11 14:11:39 -05:00
// NOTE(Able): Number constants
2021-04-11 13:22:59 -05:00
pub const TAU: i32 = 6;
pub const PI: i32 = 3;
pub const E: i32 = 3;
2021-05-03 19:33:21 -05:00
pub const M: i32 = 70; // @Kev#6900's weight in kilograms
2021-04-11 13:22:59 -05:00
pub const PHI: i32 = 2;
pub const GOLDEN_RATIO: i32 = 2;
pub const WUA: i32 = 1;
pub const EULERS_CONSTANT: i32 = 0;
pub const GRAVITY: i32 = 10;
2021-05-03 19:33:21 -05:00
pub const RNG: i32 = 12; // Kixiron#5289 Randomly rolled dice
2021-04-11 13:22:59 -05:00
pub const STD_RNG: i32 = 4; //The standard random number is 4 (source: https://xkcd.com/221/)
pub const INF: i32 = i32::max_value();
2021-04-11 14:11:39 -05:00
pub const OCTOTHORPE: char = '#';
2021-04-11 18:02:08 -05:00
pub const ANSWER: i32 = 42;