feat: create creature interface
This commit is contained in:
19
Client/Domain/Entities/CreatureInterface.cs
Normal file
19
Client/Domain/Entities/CreatureInterface.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Client.Domain.ValueObjects;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Client.Domain.Entities
|
||||
{
|
||||
public interface CreatureInterface : INotifyPropertyChanged
|
||||
{
|
||||
uint Id { get; set; }
|
||||
Transform Transform { get; set; }
|
||||
string Name { get; }
|
||||
string BriefInfo { get; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user