Skip to main content

scs_sdk_sys/
lib.rs

1#![no_std]
2#![deny(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
3#![cfg_attr(
4    not(test),
5    deny(
6        clippy::expect_used,
7        clippy::panic,
8        clippy::todo,
9        clippy::unimplemented,
10        clippy::unreachable,
11        clippy::unwrap_used
12    )
13)]
14
15#[cfg(not(target_pointer_width = "64"))]
16compile_error!("scs-sdk-sys currently supports only 64-bit SCS game targets");
17
18pub mod channels;
19pub mod configuration;
20pub mod constants;
21pub mod gameplay;
22pub mod games;
23pub mod input;
24pub mod telemetry;
25pub mod value;
26
27pub use constants::*;
28pub use input::*;
29pub use telemetry::*;
30pub use value::*;