mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-20 08:06:27 +01:00
15 lines
315 B
Java
15 lines
315 B
Java
|
package com.eu.habbo.messages.outgoing;
|
||
|
|
||
|
import com.eu.habbo.messages.ServerMessage;
|
||
|
|
||
|
public abstract class MessageComposer
|
||
|
{
|
||
|
protected final ServerMessage response;
|
||
|
|
||
|
protected MessageComposer()
|
||
|
{
|
||
|
this.response = new ServerMessage();
|
||
|
}
|
||
|
|
||
|
public abstract ServerMessage compose();
|
||
|
}
|