ACR_CreatureBehavior.AIParty.AIParty C# (CSharp) Method

AIParty() public method

Create a new, empty AI party.
public AIParty ( ACR_CreatureBehavior.AIPartyManager PartyManager ) : System
PartyManager ACR_CreatureBehavior.AIPartyManager Supplies the party manager that the /// party will be attached to.
return System
        public AIParty(AIPartyManager PartyManager)
        {
            this.PartyManager = PartyManager;

            PartyManager.AddParty(this);
        }