Files
inf3/src/Challenge.cs
Daniel Herrmann d78bec4579 Parser fix 1/2
2014-06-05 11:56:34 +02:00

19 lines
299 B
C#

using System;
namespace WorldOfPeacecraft
{
public class Challenge
{
int id_;
GameType type_;
bool accepted_;
public Challenge (int id, GameType type, bool accepted)
{
id_ = id;
type_ = type;
accepted_ = accepted;
}
}
}
//Challenge c = new Challenge(id, type, accepted);