Create Rust Project

This commit is contained in:
GuilhermeWerner
2021-02-24 09:12:23 -03:00
parent b456f20a4f
commit 36df99c7e0
13 changed files with 230 additions and 0 deletions

17
Source/Matchmaking/mod.rs Normal file
View File

@ -0,0 +1,17 @@
// Copyright (c) TribuFu. All Rights Reserved
pub fn InviteToTeam() {}
pub fn EnterTeam() {}
mod External {
#[no_mangle]
pub extern "C" fn InviteToTeam() {
super::InviteToTeam();
}
#[no_mangle]
pub extern "C" fn EnterTeam() {
super::EnterTeam();
}
}