mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-16 11:14:17 +00:00
Clear repository
This commit is contained in:
@ -1,15 +1,11 @@
|
||||
// Copyright (c) TribuFu. All Rights Reserved
|
||||
|
||||
#![allow(dead_code)]
|
||||
#![allow(unused_variables)]
|
||||
//! TribuFu SDK.
|
||||
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
pub mod Account;
|
||||
pub mod Friends;
|
||||
pub mod Matchmaking;
|
||||
pub mod Messages;
|
||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn Hello() -> i32 {
|
||||
return 1;
|
||||
pub fn Hello(input: String) -> String {
|
||||
return format!("Hello {}", input);
|
||||
}
|
||||
|
Reference in New Issue
Block a user