19 lines
299 B
C#
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); |