mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-06 16:06:37 -08:00
Co-authored-by: B3none <ablackham2000@gmail.com> Co-authored-by: B3none <24966460+B3none@users.noreply.github.com>
11 lines
210 B
C#
11 lines
210 B
C#
using MySharedTypes.Contracts;
|
|
|
|
namespace WithSharedTypes;
|
|
|
|
public class BalanceService : IBalanceService
|
|
{
|
|
public void ClearAllBalances()
|
|
{
|
|
BalanceHandler.Balances.Clear();
|
|
}
|
|
} |