Clear repository

This commit is contained in:
GuilhermeWerner
2021-08-04 12:11:32 -03:00
parent 7ea5da797a
commit 17388bbd9d
30 changed files with 8 additions and 802 deletions

View File

@ -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);
}