From fc947925a732144e346c8f0313d96368396c3c2d Mon Sep 17 00:00:00 2001 From: Samed Bektas Date: Thu, 3 Apr 2014 12:31:09 +0200 Subject: [PATCH] Parser_Methoden 2 --- src/Parser.cs | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/src/Parser.cs b/src/Parser.cs index 4603269..3043183 100644 --- a/src/Parser.cs +++ b/src/Parser.cs @@ -4,6 +4,18 @@ namespace WorldOfPeacecraft { public class Parser { + private string fromServer; + private string toServer; + + public void convertIncoming(string fromServer) + { + + } + + public void convertOutgoing(string toServer) + { + + } public void setMe() { @@ -90,24 +102,6 @@ namespace WorldOfPeacecraft { } - -======= - private string fromServer; - private string toServer; - - public Parser () - { - //TODO: Code. - } - - public void convertIncoming(string fromServer){ - - } - - public void convertOutgoing(string toServer){ - - } - } }