L2Bot2.0/Client/Domain/Entities/CreatureInterface.cs
2023-01-31 20:18:10 +04:00

21 lines
476 B
C#

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; }
VitalStats VitalStats { get; set; }
Transform Transform { get; set; }
string Name { get; }
string BriefInfo { get; }
}
}