From 043dcff0303f92168140798a6b908fbdb3883a82 Mon Sep 17 00:00:00 2001 From: wafasadri Date: Thu, 3 Apr 2014 12:04:27 +0200 Subject: [PATCH] * Parser.cs: * inf3.csproj: Parser Klasse erstellt --- inf3.csproj | 1 + src/Parser.cs | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/Parser.cs diff --git a/inf3.csproj b/inf3.csproj index 2be5ef3..f6ff4e4 100644 --- a/inf3.csproj +++ b/inf3.csproj @@ -57,6 +57,7 @@ + diff --git a/src/Parser.cs b/src/Parser.cs new file mode 100644 index 0000000..f785514 --- /dev/null +++ b/src/Parser.cs @@ -0,0 +1,13 @@ +using System; + +namespace inf3 +{ + public class Parser + { + public Parser () + { + //TODO: Code. + } + } +} +