diff --git a/TheGameExtreme/viewmodel/FractionCardVM.cs b/TheGameExtreme/viewmodel/FractionCardVM.cs new file mode 100644 index 0000000..4f21f16 --- /dev/null +++ b/TheGameExtreme/viewmodel/FractionCardVM.cs @@ -0,0 +1,12 @@ +using System; +using TheGameExtreme.model.card; + +namespace TheGameExtreme.viewmodel +{ + public class FractionCardVM : CardVM + { + public FractionCardVM(Card view) : base(view) + { + } + } +}