Dateien in richtigen ordner verschoben

This commit is contained in:
2014-04-11 12:03:40 +02:00
parent d09316f036
commit f990df5959
2 changed files with 0 additions and 0 deletions

14
src/Time.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
namespace WorldOfPeacecraft
{
public class Time
{
long t_;
public Time (long t)
{
t_ = t;
}
}
}