online klasse erstellt und wird jetzt auch benutzt
This commit is contained in:
@@ -66,6 +66,7 @@
|
||||
<Compile Include="src\Challenge.cs" />
|
||||
<Compile Include="src\YourID.cs" />
|
||||
<Compile Include="src\DefaultGui\Time.cs" />
|
||||
<Compile Include="src\DefaultGui\Online.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
</Project>
|
||||
14
src/DefaultGui/Online.cs
Normal file
14
src/DefaultGui/Online.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace inf3
|
||||
{
|
||||
public class Online
|
||||
{
|
||||
int o_;
|
||||
public Online (int o)
|
||||
{
|
||||
o_ = o;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -285,7 +285,7 @@ namespace WorldOfPeacecraft
|
||||
LinkedList <string> unnamedValues = onlineBlock.GetUnnamedValues ();
|
||||
string stringValue = unnamedValues.First.Value;
|
||||
int intValue = int.Parse (stringValue);
|
||||
//Online o = new Online(intValue);
|
||||
Online o = new Online(intValue);
|
||||
}
|
||||
|
||||
private void ProcessEntities (Block entitiesBlock)
|
||||
|
||||
Reference in New Issue
Block a user