Opponent erzeugt
This commit is contained in:
19
Opponent.cs
Normal file
19
Opponent.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user