mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
16 lines
261 B
Rust
16 lines
261 B
Rust
// Copyright (c) TribuFu. All Rights Reserved
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
#![allow(non_snake_case)]
|
|
|
|
pub mod Account;
|
|
pub mod Friends;
|
|
pub mod Matchmaking;
|
|
pub mod Messages;
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn Hello() -> i32 {
|
|
return 1;
|
|
}
|