feat: create creature interface

This commit is contained in:
k0t9i
2023-01-31 15:14:19 +04:00
parent b8b92b7cf8
commit 31febdd341
16 changed files with 279 additions and 275 deletions

View File

@@ -12,8 +12,6 @@ namespace Client.Domain.ViewModels
public interface MainViewModelInterface
{
void AddChatMessage(ChatMessage chatMessage);
void AddPlayer(Player player);
void RemovePlayer(Player player);
void AddDrop(Drop drop);
void RemoveDrop(Drop drop);
}