Game
Client
Notes
Protagonist state component
// Are the protagonists still able to continue playing?
// The scenar will be the ultimate decider, but the gamemode should be able to tell the information by
// adding this component to the protagonist Team entity.
//
// Reasons that it can't continue:
// In Solo:
// - Hatapon is eliminated
// - All units are eliminated (except Hatapon)
// In Multi:
// - All uberheroes are eliminated
public struct ProtagonistTeamIsEliminatedTag : IComponentData
{
}
Game
Client
Notes
Protagonist state component