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.
sae201_qwirkle/Qwirkle/QwirkleConsoleApp/NotificationClass.cs

23 lines
562 B

using QwirkleClassLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QwirkleConsoleApp
{
class NotificationClass
{
public void NotificationPlayerAdd(object? sender, AddPlayerNotifiedEventArgs args)
{
Console.WriteLine(args.returnedNotified);
}
public void NotificationNextPlayer(object? sender, NextPlayerNotifiedEventArgs args)
{
Console.WriteLine(args.player.NameTag + "'s turn");
}
}
}