mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-12 17:22:26 -04:00
Removed NioTSO client and server
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
This commit is contained in:
parent
f12ba1502b
commit
22191ce648
591 changed files with 53264 additions and 3362 deletions
21
server/FSO.Server.Database/DA/AvatarClaims/IAvatarClaims.cs
Executable file
21
server/FSO.Server.Database/DA/AvatarClaims/IAvatarClaims.cs
Executable file
|
@ -0,0 +1,21 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace FSO.Server.Database.DA.AvatarClaims
|
||||
{
|
||||
public interface IAvatarClaims
|
||||
{
|
||||
DbAvatarClaim Get(int id);
|
||||
IEnumerable<DbAvatarClaim> GetAll();
|
||||
IEnumerable<DbAvatarActive> GetAllActiveAvatars();
|
||||
int? GetAllActiveAvatarsCount();
|
||||
DbAvatarClaim GetByAvatarID(uint id);
|
||||
IEnumerable<DbAvatarClaim> GetAllByOwner(string owner);
|
||||
|
||||
int? TryCreate(DbAvatarClaim claim);
|
||||
bool Claim(int id, string previousOwner, string newOwner, uint location);
|
||||
void RemoveRemaining(string previousOwner, uint location);
|
||||
|
||||
void Delete(int id, string owner);
|
||||
void DeleteAll(string owner);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue