result erstellt und benutzt im parser
This commit is contained in:
20
src/Result.cs
Normal file
20
src/Result.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace inf3
|
||||
{
|
||||
public class Result
|
||||
{
|
||||
int round_;
|
||||
bool running_;
|
||||
int delay_;
|
||||
|
||||
public Result (int round, bool running, int delay)
|
||||
{
|
||||
round_ = round;
|
||||
running_ = running;
|
||||
delay_ = delay;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*Result r = new Result(round, running, delay);*/
|
||||
|
||||
Reference in New Issue
Block a user