mirror of
https://github.com/tribufu/tribufu-rust
synced 2026-06-01 09:42:37 +00:00
Clear repository
This commit is contained in:
parent
7ea5da797a
commit
17388bbd9d
30 changed files with 8 additions and 802 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue