remove comments

This commit is contained in:
Jake Probst 2019-08-20 18:01:04 -07:00
parent fff61e0adb
commit ee31196ac1

View File

@ -15,9 +15,7 @@ pub trait ServerState {
type Packet: ServerPacket;
type PacketError;
//fn handle(&mut self, pkt: &Self::Packet) -> Result<Vec<Box<dyn PSOPacket>>, Self::PacketError>;
fn on_connect(&mut self) -> Vec<OnConnect>;
//fn handle(&mut self, pkt: &Self::Packet) -> Result<Box<dyn Iterator<Item = Box<dyn PSOPacket>>>, Self::PacketError>;
fn handle(&mut self, pkt: &Self::Packet) -> Box<dyn Iterator<Item = Box<dyn PSOPacket>>>;
}