public SubBehavior(MaxOracleBehavior owner, SubBehavior.SubBehavID ID) { this.owner = owner; this.ID = ID; }
public SSOracleMeetWhite(MaxOracleBehavior owner) : base(owner, SubBehavior.SubBehavID.MeetWhite, Conversation.ID.Pebbles_White) { this.chatLabel = new OracleChatLabel(owner); base.oracle.room.AddObject(this.chatLabel); this.chatLabel.Hide(); }
public TalkBehavior(MaxOracleBehavior owner, SubBehavior.SubBehavID ID) : base(owner, ID) { }
public ConversationBehavior(MaxOracleBehavior owner, SubBehavior.SubBehavID ID, Conversation.ID convoID) : base(owner, ID) { this.convoID = convoID; }
public NoSubBehavior(MaxOracleBehavior owner) : base(owner, SubBehavior.SubBehavID.General) { }