10 lines
235 B
C#
10 lines
235 B
C#
|
using Tiger.Communication.Messages.Types;
|
||
|
using Tiger.Game.Habbos;
|
||
|
|
||
|
namespace Tiger.Game.Navigator.Views;
|
||
|
|
||
|
public interface INavigatorView
|
||
|
{
|
||
|
string Code { get; }
|
||
|
void Compose(ServerMessage message, Habbo habbo, string query);
|
||
|
}
|