CS3750 Portfolio

Showcasing my group projects from CS 3750

Speed Card Game

playing1

Gameplay

Players take turns laying cards in two central card piles until one player wins by laying all of their cards.

Logic

The app was created using Blazor Web Assembly SignalR and runs asynchronously, allowing two players to play at the same time, asynchronously, against each other.

public async Task Draw()
{
    if (hubConnection is not null)
    {
        await hubConnection.SendAsync("DrawCard", Table, PlayerGuid);
    }
}

Download the code!

Home