malikhollins / HungerGamesSimulator

A hunger games simulator built using the .net blazor framework
0 stars 1 forks source link

Tributes joining a party #4

Closed malikhollins closed 1 year ago

malikhollins commented 1 year ago

Acceptance Criteria: Two or more tributes are able to group together to be a Party and act in the hunger games simulator together. If a party is the last type of actor alive, then it must break off. ( We should be able to trigger a sudden death feature in Tributes so that they don't attempt this again after breaking away ).

malikhollins commented 1 year ago

Create a PartyService which can register a list of ActorID to a unique PartyID. Actor's will set their current PartyID to the new PartyID. When a party disbands and is the final actor, trigger a sudden death bool so that none of the actors can.

malikhollins commented 1 year ago

Finished, without sudden death added.