Opponent erzeugt

This commit is contained in:
Wafa Sadri
2014-04-11 10:48:24 +02:00
parent ab60843c61
commit 9c30e121f3
3 changed files with 35 additions and 4 deletions

19
Opponent.cs Normal file
View File

@@ -0,0 +1,19 @@
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;
}
}
}