Irrelevant change to NTtBFormatMsg constructor
This commit is contained in:
parent
347984d0db
commit
454f8331c7
@ -0,0 +1,13 @@
|
||||
package ch.unibas.dmi.dbis.cs108.Multiplayer.Protocol;
|
||||
|
||||
public abstract class NTtBFormatMsg extends ProtocolMessage{
|
||||
|
||||
private String message;
|
||||
|
||||
public NTtBFormatMsg(String msg) {
|
||||
this.message = msg;
|
||||
}
|
||||
|
||||
public boolean isCorrectlyFormatted(String msg){ return false;}
|
||||
public String getMessage(){return this.message;}
|
||||
}
|
||||
Reference in New Issue
Block a user