Adds style cop (#109)

This commit is contained in:
Kamron Batman 2020-04-26 00:16:02 -07:00 committed by GitHub
parent 3e715bcb60
commit 556a17aba8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1725 changed files with 33831 additions and 38046 deletions

View file

@ -57,7 +57,7 @@ namespace Server.Accounting
/// 0 to 999,999,999 by default.
/// </summary>
[CommandProperty(AccessLevel.Administrator)]
int TotalGold{ get; }
int TotalGold { get; }
/// <summary>
/// This amount represents the current amount of Platinum owned by the player.
@ -66,7 +66,7 @@ namespace Server.Accounting
/// One Platinum represents the value of CurrencyThreshold in Gold.
/// </summary>
[CommandProperty(AccessLevel.Administrator)]
int TotalPlat{ get; }
int TotalPlat { get; }
/// <summary>
/// Attempts to deposit the given amount of Gold into this account.
@ -110,17 +110,17 @@ namespace Server.Accounting
public interface IAccount : IGoldAccount, IComparable<IAccount>
{
string Username{ get; set; }
string Email{ get; set; }
AccessLevel AccessLevel{ get; set; }
string Username { get; set; }
string Email { get; set; }
AccessLevel AccessLevel { get; set; }
int Length{ get; }
int Limit{ get; }
int Count{ get; }
Mobile this[int index]{ get; set; }
int Length { get; }
int Limit { get; }
int Count { get; }
Mobile this[int index] { get; set; }
void Delete();
void SetPassword(string password);
bool CheckPassword(string password);
}
}
}