c97dd1f260
* Remove ^M's. * Re-indent automatically. * Remove whitespace at the end of lines.
15 lines
244 B
C++
15 lines
244 B
C++
#ifndef _CONSTRAINTRESOLVER_H_
|
|
#define _CONSTRAINTRESOLVER_H_
|
|
|
|
#include "GameObserver.h"
|
|
#include "MTGCardInstance.h"
|
|
|
|
|
|
class ConstraintResolver {
|
|
protected:
|
|
public:
|
|
static int untap(GameObserver * game, MTGCardInstance * card);
|
|
};
|
|
|
|
#endif
|