Files
Morris/Morris/ExtensionMethods.cs
Markus Himmel 561490e3db Spiellogik
2016-08-24 14:18:13 +02:00

17 lines
256 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Morris
{
internal static class ExtensionMethods
{
public static Player Opponent(this Player p)
{
return ~p;
}
}
}