time erzeugt und wird jetzt auch benutzt

This commit is contained in:
Wafa Sadri
2014-04-11 11:41:20 +02:00
parent 8c4e337e82
commit 736b90c72b
3 changed files with 16 additions and 1 deletions

14
src/DefaultGui/Time.cs Normal file
View File

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