Erwan
-removing some unused files
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
#define _CARDS_H_
|
||||
|
||||
#include "MTGAbility.h"
|
||||
#include "GroupOfCards.h"
|
||||
#include "ManaCost.h"
|
||||
#include "CardDescriptor.h"
|
||||
#include "AIPlayer.h"
|
||||
@@ -2940,6 +2939,7 @@ public:
|
||||
};
|
||||
|
||||
//GenericKirdApe
|
||||
//Erwan 2008/11/15 : this cannot work as type is never initialized...
|
||||
class AGenericKirdApe:public MTGAbility{
|
||||
public:
|
||||
int init;
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
#ifndef _GROUPOFCARDS_H_
|
||||
#define _GROUPOFCARDS_H_
|
||||
|
||||
#include "GameObserver.h"
|
||||
#include "MTGCardInstance.h"
|
||||
|
||||
#define FILTER_SUBTYPE 1
|
||||
|
||||
#define GROUP_LIMIT 10
|
||||
|
||||
class GroupOfCards{
|
||||
protected:
|
||||
GameObserver * game;
|
||||
public:
|
||||
GroupOfCards(GameObserver * _game);
|
||||
//virtual ~GroupOfCards();
|
||||
virtual int includes(MTGCardInstance * card){return 0;};
|
||||
};
|
||||
|
||||
class GroupOfCreatures:public GroupOfCards{
|
||||
protected:
|
||||
int filter;
|
||||
int filterValue;
|
||||
public:
|
||||
GroupOfCreatures(GameObserver * _game, int _filter, int _filterValue);
|
||||
int includes(MTGCardInstance * card);
|
||||
};
|
||||
|
||||
class GroupOfSpecificCards:public GroupOfCards{
|
||||
protected:
|
||||
int nb_cards;
|
||||
MTGCardInstance * cards[GROUP_LIMIT];
|
||||
public:
|
||||
int includes(MTGCardInstance * card);
|
||||
GroupOfSpecificCards(GameObserver * _game, MTGCardInstance * _creatures[], int _nb_creatures);
|
||||
GroupOfSpecificCards(GameObserver * _game, MTGCardInstance * card);
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -1,6 +0,0 @@
|
||||
#ifndef _GROUPOFCREATURES_H_
|
||||
#define _GROUPOFCREATURES_H_
|
||||
|
||||
class Group
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user