Back to project page pink-ponies.
The source code is released under:
Software License Agreement (BSD License) Copyright (c) 2013, Pink Ponies Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted prov...
If you think the Android project pink-ponies listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from ww w . j av a 2 s. c o m */ package ru.pinkponies.protocol; import org.msgpack.annotation.Message; @Message public final class SayPacket extends Packet { public String text; public SayPacket() { super(); this.text = ""; } public SayPacket(String text) { super(); this.text = text; } @Override public String toString() { return "SayPacket [text=" + text + "]"; } }