Files
inf3/Opponent.cs
2014-04-11 10:48:24 +02:00

19 lines
269 B
C#

using System;
namespace inf3
{
public class Opponent
{
int points_;
int total_;
enum Decision {DRAGON, STAGHUNT, SKIRMISH};
Decision d_;
public Opponent (int points, int total, Decision d)
{
points_ = points;
total_ = total;
d_ = d;
}
}
}