mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-25 02:33:08 -03:00
10 lines
259 B
C#
10 lines
259 B
C#
using BattleBitAPI.Common;
|
|
|
|
namespace BattleBitAPI.Storage
|
|
{
|
|
public interface IPlayerStatsDatabase
|
|
{
|
|
public Task<PlayerStats> GetPlayerStatsOf(ulong steamID);
|
|
public Task SavePlayerStatsOf(ulong steamID, PlayerStats stats);
|
|
}
|
|
}
|