Continous Integration in der Praxis Gruppenarbeit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
411 B

  1. using MiniGames.Shared.Models;
  2. using System;
  3. namespace MiniGames.Client.ViewModel
  4. {
  5. public class Uno
  6. {
  7. public bool IstAblageStabelFarbeGleichHand(string ablegeStapelKarte, string neueKarte)
  8. {
  9. if (ablegeStapelKarte.Equals(neueKarte))
  10. {
  11. return true;
  12. } else
  13. {
  14. return false;
  15. }
  16. }
  17. }
  18. }