Files
wagic/projects/mtg/include/ConstraintResolver.h
wagic.the.homebrew d45e3b101b
2008-11-02 09:50:16 +00:00

15 lines
241 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