using System; using TheGameExtreme.model.card; namespace TheGameExtreme.model.rule { public abstract class Rule { public bool Test() { throw new NotImplementedException(); } } }