19 lines
269 B
C#
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;
|
|
}
|
|
}
|
|
} |