Add GetPlayerByName to IMultiplayer interface

This commit is contained in:
John Gross
2017-02-06 16:48:07 -08:00
parent ff3cdfd099
commit 0f23e2a778
3 changed files with 16 additions and 7 deletions

View File

@@ -17,5 +17,6 @@ namespace Torch.API
void KickPlayer(ulong id);
void BanPlayer(ulong id, bool banned = true);
IMyPlayer GetPlayerBySteamId(ulong id);
IMyPlayer GetPlayerByName(string name);
}
}