feat: add hero target
This commit is contained in:
@@ -43,6 +43,15 @@ namespace Client.Domain.Service
|
||||
}
|
||||
}
|
||||
|
||||
public T? GetEntity(uint id)
|
||||
{
|
||||
T? result = null;
|
||||
|
||||
entities.TryGetValue(id, out result);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public virtual void OnCreate(T entity)
|
||||
{
|
||||
|
||||
|
Reference in New Issue
Block a user