ITeam Interface

Summary

An object with a PlatformerGameKit.Team.
Assembly
PlatformerGameKit.dll
Namespace
PlatformerGameKit
Implementing Types
ITeam

Syntax

public interface ITeam

Examples

class Character : MonoBehaviour, ITeam
{
    [SerializeField]
    private Team _Team;
    public Team Team => _Team;
}

Remarks

Documentation: Teams

Properties

Name Value Summary
Team Team
The Platformer.Team this object is on.