L2Bot2.0/Client/Application/ViewModels/CreatureListViewModelInterface.cs
2023-01-29 20:44:24 +04:00

18 lines
377 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Application.ViewModels
{
public interface CreatureListViewModelInterface
{
uint Id { get; }
string Title { get; }
string Info { get; }
float Distance { get; }
float DeltaZ { get; }
}
}