10 lines
No EOL
269 B
C#
10 lines
No EOL
269 B
C#
namespace WingsEmu.Game.Exchange;
|
|
|
|
public interface IExchangeComponent
|
|
{
|
|
public void SetExchange(PlayerExchange exchange);
|
|
public void RemoveExchange();
|
|
public PlayerExchange GetExchange();
|
|
public bool IsInExchange();
|
|
public long GetTargetId();
|
|
} |