mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 13:15:53 +12:00
Remove " " space from the names
This commit is contained in:
parent
bef3032886
commit
8e451633dc
59 changed files with 391 additions and 391 deletions
16
Horse Isle Server/HorseIsleServer/Player/Mailbox.cs
Normal file
16
Horse Isle Server/HorseIsleServer/Player/Mailbox.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using HISP.Server;
|
||||
|
||||
namespace HISP.Player
|
||||
{
|
||||
class Mailbox
|
||||
{
|
||||
private User baseUser;
|
||||
public int MailCount;
|
||||
|
||||
public Mailbox(User user)
|
||||
{
|
||||
MailCount = Database.CheckMailcount(user.Id);
|
||||
baseUser = user;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue