Files
reallife-gamemode/ReallifeGamemode.Server/Util/IBankAccount.cs
2019-07-17 19:52:55 +02:00

12 lines
184 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Util
{
public interface IBankAccount
{
int Balance { get; set; }
}
}