mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-26 03:03:08 -03:00
11 lines
259 B
C#
11 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);
|
|||
|
}
|
|||
|
}
|