online klasse erstellt und wird jetzt auch benutzt

This commit is contained in:
Wafa Sadri
2014-04-11 11:43:22 +02:00
parent 736b90c72b
commit 531ac335ee
3 changed files with 16 additions and 1 deletions

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

@@ -0,0 +1,14 @@
using System;
namespace inf3
{
public class Online
{
int o_;
public Online (int o)
{
o_ = o;
}
}
}