challenge erzeugt und wird jetzt auch benutzt

This commit is contained in:
Wafa Sadri
2014-04-11 11:35:57 +02:00
parent ef31ddf949
commit 3488246873
3 changed files with 21 additions and 1 deletions

19
src/Challenge.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
namespace inf3
{
public class Challenge
{
int id_;
string type_;
bool accepted_;
public Challenge (int id, string type, bool accepted)
{
id_ = id;
type_ = type;
accepted_ = accepted;
}
}
}
//Challenge c = new Challenge(id, type, accepted);