### YamlMime:ManagedReference items: - uid: TinyLife.Tools.PlayModeTool commentId: T:TinyLife.Tools.PlayModeTool id: PlayModeTool parent: TinyLife.Tools children: - TinyLife.Tools.PlayModeTool.#ctor - TinyLife.Tools.PlayModeTool.Closed - TinyLife.Tools.PlayModeTool.Opened - TinyLife.Tools.PlayModeTool.SelectedPerson - TinyLife.Tools.PlayModeTool.SelectedStat - TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime) langs: - csharp - vb name: PlayModeTool nameWithType: PlayModeTool fullName: TinyLife.Tools.PlayModeTool type: Class source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: PlayModeTool path: Tools/PlayModeTool.cs startLine: 28 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nA tool is a type of game mode that is currently active.\nTools are split up into the and , the latter of which holds all tools that can be found in the build menu.\n" example: [] syntax: content: 'public class PlayModeTool : Tool' content.vb: >- Public Class PlayModeTool Inherits Tool inheritance: - System.Object - TinyLife.Tools.Tool inheritedMembers: - TinyLife.Tools.Tool.RemoveTool - TinyLife.Tools.Tool.MoveTool - TinyLife.Tools.Tool.PlayModeTool - TinyLife.Tools.Tool.BuildTools - TinyLife.Tools.Tool.SelectedObject - TinyLife.Tools.Tool.SelectedWall - TinyLife.Tools.Tool.Input - TinyLife.Tools.Tool.Map - TinyLife.Tools.Tool.Money - TinyLife.Tools.Tool.Texture - TinyLife.Tools.Tool.DisplayAsTab - TinyLife.Tools.Tool.MousePos - TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) - TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) - TinyLife.Tools.Tool.GetMouseCursor - TinyLife.Tools.Tool.ForceWallsUp - TinyLife.Tools.Tool.CanSaveOrSwitchModes - TinyLife.Tools.Tool.ShouldHighlightSelectedObject - TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) - TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) - TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32}) - TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,TinyLife.LnCategory,System.Collections.Generic.IEnumerable{System.String}) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - TinyLife.Tools.PlayModeTool.TinyLife.Utilities.Extensions.JsonCopy``1 modifiers.csharp: - public - class modifiers.vb: - Public - Class - uid: TinyLife.Tools.PlayModeTool.SelectedPerson commentId: P:TinyLife.Tools.PlayModeTool.SelectedPerson id: SelectedPerson parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: SelectedPerson nameWithType: PlayModeTool.SelectedPerson fullName: TinyLife.Tools.PlayModeTool.SelectedPerson type: Property source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedPerson path: Tools/PlayModeTool.cs startLine: 44 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nStores the that is currently selected\n" example: [] syntax: content: public Person SelectedPerson { get; } parameters: [] return: type: TinyLife.Objects.Person content.vb: Public ReadOnly Property SelectedPerson As Person overload: TinyLife.Tools.PlayModeTool.SelectedPerson* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: TinyLife.Tools.PlayModeTool.SelectedStat commentId: P:TinyLife.Tools.PlayModeTool.SelectedStat id: SelectedStat parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: SelectedStat nameWithType: PlayModeTool.SelectedStat fullName: TinyLife.Tools.PlayModeTool.SelectedStat type: Property source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SelectedStat path: Tools/PlayModeTool.cs startLine: 48 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nThe that is currently se\n" example: [] syntax: content: public PlayModeTool.StatType SelectedStat { get; } parameters: [] return: type: TinyLife.Tools.PlayModeTool.StatType content.vb: Public ReadOnly Property SelectedStat As PlayModeTool.StatType overload: TinyLife.Tools.PlayModeTool.SelectedStat* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: TinyLife.Tools.PlayModeTool.#ctor commentId: M:TinyLife.Tools.PlayModeTool.#ctor id: '#ctor' parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: PlayModeTool() nameWithType: PlayModeTool.PlayModeTool() fullName: TinyLife.Tools.PlayModeTool.PlayModeTool() type: Constructor source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: Tools/PlayModeTool.cs startLine: 57 assemblies: - Tiny Life namespace: TinyLife.Tools example: [] syntax: content: public PlayModeTool() content.vb: Public Sub New overload: TinyLife.Tools.PlayModeTool.#ctor* modifiers.csharp: - public modifiers.vb: - Public - uid: TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime) commentId: M:TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime) id: Update(Microsoft.Xna.Framework.GameTime) parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: Update(GameTime) nameWithType: PlayModeTool.Update(GameTime) fullName: TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime) type: Method source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: Tools/PlayModeTool.cs startLine: 61 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nThis method is called every update frame for the .\n" example: [] syntax: content: public override void Update(GameTime time) parameters: - id: time type: Microsoft.Xna.Framework.GameTime description: The game's time content.vb: Public Overrides Sub Update(time As GameTime) overridden: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) overload: TinyLife.Tools.PlayModeTool.Update* modifiers.csharp: - public - override modifiers.vb: - Public - Overrides - uid: TinyLife.Tools.PlayModeTool.Opened commentId: M:TinyLife.Tools.PlayModeTool.Opened id: Opened parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: Opened() nameWithType: PlayModeTool.Opened() fullName: TinyLife.Tools.PlayModeTool.Opened() type: Method source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Opened path: Tools/PlayModeTool.cs startLine: 89 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nCalled when this build tool is opened.\nBy default, this method initializes several settings and calls .\n" example: [] syntax: content: public override void Opened() content.vb: Public Overrides Sub Opened overridden: TinyLife.Tools.Tool.Opened overload: TinyLife.Tools.PlayModeTool.Opened* modifiers.csharp: - public - override modifiers.vb: - Public - Overrides - uid: TinyLife.Tools.PlayModeTool.Closed commentId: M:TinyLife.Tools.PlayModeTool.Closed id: Closed parent: TinyLife.Tools.PlayModeTool langs: - csharp - vb name: Closed() nameWithType: PlayModeTool.Closed() fullName: TinyLife.Tools.PlayModeTool.Closed() type: Method source: remote: path: TinyLife/Tools/PlayModeTool.cs branch: master repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Closed path: Tools/PlayModeTool.cs startLine: 218 assemblies: - Tiny Life namespace: TinyLife.Tools summary: "\nCalled when this build tool is closed.\nBy default, this method removes its elements from the ui.\n" example: [] syntax: content: public override void Closed() content.vb: Public Overrides Sub Closed overridden: TinyLife.Tools.Tool.Closed overload: TinyLife.Tools.PlayModeTool.Closed* modifiers.csharp: - public - override modifiers.vb: - Public - Overrides references: - uid: TinyLife.Tools commentId: N:TinyLife.Tools name: TinyLife.Tools nameWithType: TinyLife.Tools fullName: TinyLife.Tools - uid: System.Object commentId: T:System.Object parent: System isExternal: true name: Object nameWithType: Object fullName: System.Object - uid: TinyLife.Tools.Tool commentId: T:TinyLife.Tools.Tool parent: TinyLife.Tools name: Tool nameWithType: Tool fullName: TinyLife.Tools.Tool - uid: TinyLife.Tools.Tool.RemoveTool commentId: F:TinyLife.Tools.Tool.RemoveTool parent: TinyLife.Tools.Tool name: RemoveTool nameWithType: Tool.RemoveTool fullName: TinyLife.Tools.Tool.RemoveTool - uid: TinyLife.Tools.Tool.MoveTool commentId: F:TinyLife.Tools.Tool.MoveTool parent: TinyLife.Tools.Tool name: MoveTool nameWithType: Tool.MoveTool fullName: TinyLife.Tools.Tool.MoveTool - uid: TinyLife.Tools.Tool.PlayModeTool commentId: F:TinyLife.Tools.Tool.PlayModeTool parent: TinyLife.Tools.Tool name: PlayModeTool nameWithType: Tool.PlayModeTool fullName: TinyLife.Tools.Tool.PlayModeTool - uid: TinyLife.Tools.Tool.BuildTools commentId: F:TinyLife.Tools.Tool.BuildTools parent: TinyLife.Tools.Tool name: BuildTools nameWithType: Tool.BuildTools fullName: TinyLife.Tools.Tool.BuildTools - uid: TinyLife.Tools.Tool.SelectedObject commentId: P:TinyLife.Tools.Tool.SelectedObject parent: TinyLife.Tools.Tool name: SelectedObject nameWithType: Tool.SelectedObject fullName: TinyLife.Tools.Tool.SelectedObject - uid: TinyLife.Tools.Tool.SelectedWall commentId: P:TinyLife.Tools.Tool.SelectedWall parent: TinyLife.Tools.Tool name: SelectedWall nameWithType: Tool.SelectedWall fullName: TinyLife.Tools.Tool.SelectedWall - uid: TinyLife.Tools.Tool.Input commentId: P:TinyLife.Tools.Tool.Input parent: TinyLife.Tools.Tool name: Input nameWithType: Tool.Input fullName: TinyLife.Tools.Tool.Input - uid: TinyLife.Tools.Tool.Map commentId: P:TinyLife.Tools.Tool.Map parent: TinyLife.Tools.Tool name: Map nameWithType: Tool.Map fullName: TinyLife.Tools.Tool.Map - uid: TinyLife.Tools.Tool.Money commentId: P:TinyLife.Tools.Tool.Money parent: TinyLife.Tools.Tool name: Money nameWithType: Tool.Money fullName: TinyLife.Tools.Tool.Money - uid: TinyLife.Tools.Tool.Texture commentId: F:TinyLife.Tools.Tool.Texture parent: TinyLife.Tools.Tool name: Texture nameWithType: Tool.Texture fullName: TinyLife.Tools.Tool.Texture - uid: TinyLife.Tools.Tool.DisplayAsTab commentId: F:TinyLife.Tools.Tool.DisplayAsTab parent: TinyLife.Tools.Tool name: DisplayAsTab nameWithType: Tool.DisplayAsTab fullName: TinyLife.Tools.Tool.DisplayAsTab - uid: TinyLife.Tools.Tool.MousePos commentId: F:TinyLife.Tools.Tool.MousePos parent: TinyLife.Tools.Tool name: MousePos nameWithType: Tool.MousePos fullName: TinyLife.Tools.Tool.MousePos - uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) commentId: M:TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) parent: TinyLife.Tools.Tool isExternal: true name: InitBuildModeUi(Panel, Panel) nameWithType: Tool.InitBuildModeUi(Panel, Panel) fullName: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel, MLEM.Ui.Elements.Panel) spec.csharp: - uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) name: InitBuildModeUi nameWithType: Tool.InitBuildModeUi fullName: TinyLife.Tools.Tool.InitBuildModeUi - name: ( nameWithType: ( fullName: ( - uid: MLEM.Ui.Elements.Panel name: Panel nameWithType: Panel fullName: MLEM.Ui.Elements.Panel isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Panel name: Panel nameWithType: Panel fullName: MLEM.Ui.Elements.Panel isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) name: InitBuildModeUi nameWithType: Tool.InitBuildModeUi fullName: TinyLife.Tools.Tool.InitBuildModeUi - name: ( nameWithType: ( fullName: ( - uid: MLEM.Ui.Elements.Panel name: Panel nameWithType: Panel fullName: MLEM.Ui.Elements.Panel isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Panel name: Panel nameWithType: Panel fullName: MLEM.Ui.Elements.Panel isExternal: true - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) commentId: M:TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) parent: TinyLife.Tools.Tool isExternal: true name: Draw(GameTime, SpriteBatch) nameWithType: Tool.Draw(GameTime, SpriteBatch) fullName: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch) spec.csharp: - uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) name: Draw nameWithType: Tool.Draw fullName: TinyLife.Tools.Tool.Draw - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch name: SpriteBatch nameWithType: SpriteBatch fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) name: Draw nameWithType: Tool.Draw fullName: TinyLife.Tools.Tool.Draw - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch name: SpriteBatch nameWithType: SpriteBatch fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch isExternal: true - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.GetMouseCursor commentId: M:TinyLife.Tools.Tool.GetMouseCursor parent: TinyLife.Tools.Tool name: GetMouseCursor() nameWithType: Tool.GetMouseCursor() fullName: TinyLife.Tools.Tool.GetMouseCursor() spec.csharp: - uid: TinyLife.Tools.Tool.GetMouseCursor name: GetMouseCursor nameWithType: Tool.GetMouseCursor fullName: TinyLife.Tools.Tool.GetMouseCursor - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.GetMouseCursor name: GetMouseCursor nameWithType: Tool.GetMouseCursor fullName: TinyLife.Tools.Tool.GetMouseCursor - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.ForceWallsUp commentId: M:TinyLife.Tools.Tool.ForceWallsUp parent: TinyLife.Tools.Tool name: ForceWallsUp() nameWithType: Tool.ForceWallsUp() fullName: TinyLife.Tools.Tool.ForceWallsUp() spec.csharp: - uid: TinyLife.Tools.Tool.ForceWallsUp name: ForceWallsUp nameWithType: Tool.ForceWallsUp fullName: TinyLife.Tools.Tool.ForceWallsUp - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.ForceWallsUp name: ForceWallsUp nameWithType: Tool.ForceWallsUp fullName: TinyLife.Tools.Tool.ForceWallsUp - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.CanSaveOrSwitchModes commentId: M:TinyLife.Tools.Tool.CanSaveOrSwitchModes parent: TinyLife.Tools.Tool name: CanSaveOrSwitchModes() nameWithType: Tool.CanSaveOrSwitchModes() fullName: TinyLife.Tools.Tool.CanSaveOrSwitchModes() spec.csharp: - uid: TinyLife.Tools.Tool.CanSaveOrSwitchModes name: CanSaveOrSwitchModes nameWithType: Tool.CanSaveOrSwitchModes fullName: TinyLife.Tools.Tool.CanSaveOrSwitchModes - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.CanSaveOrSwitchModes name: CanSaveOrSwitchModes nameWithType: Tool.CanSaveOrSwitchModes fullName: TinyLife.Tools.Tool.CanSaveOrSwitchModes - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject commentId: M:TinyLife.Tools.Tool.ShouldHighlightSelectedObject parent: TinyLife.Tools.Tool name: ShouldHighlightSelectedObject() nameWithType: Tool.ShouldHighlightSelectedObject() fullName: TinyLife.Tools.Tool.ShouldHighlightSelectedObject() spec.csharp: - uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject name: ShouldHighlightSelectedObject nameWithType: Tool.ShouldHighlightSelectedObject fullName: TinyLife.Tools.Tool.ShouldHighlightSelectedObject - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject name: ShouldHighlightSelectedObject nameWithType: Tool.ShouldHighlightSelectedObject fullName: TinyLife.Tools.Tool.ShouldHighlightSelectedObject - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) commentId: M:TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) parent: TinyLife.Tools.Tool isExternal: true name: GetClosestWallDirection(Point) nameWithType: Tool.GetClosestWallDirection(Point) fullName: TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) spec.csharp: - uid: TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) name: GetClosestWallDirection nameWithType: Tool.GetClosestWallDirection fullName: TinyLife.Tools.Tool.GetClosestWallDirection - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.Point name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.GetClosestWallDirection(Microsoft.Xna.Framework.Point) name: GetClosestWallDirection nameWithType: Tool.GetClosestWallDirection fullName: TinyLife.Tools.Tool.GetClosestWallDirection - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.Point name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point isExternal: true - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) commentId: M:TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) parent: TinyLife.Tools.Tool isExternal: true name: IsOnLot(Point) nameWithType: Tool.IsOnLot(Point) fullName: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) spec.csharp: - uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) name: IsOnLot nameWithType: Tool.IsOnLot fullName: TinyLife.Tools.Tool.IsOnLot - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.Point name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point) name: IsOnLot nameWithType: Tool.IsOnLot fullName: TinyLife.Tools.Tool.IsOnLot - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.Point name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point isExternal: true - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32}) commentId: M:TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32}) parent: TinyLife.Tools.Tool isExternal: true name: ColorSelection(ColorScheme, Action) nameWithType: Tool.ColorSelection(ColorScheme, Action) fullName: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme, System.Action) nameWithType.vb: Tool.ColorSelection(ColorScheme, Action(Of Int32)) fullName.vb: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme, System.Action(Of System.Int32)) name.vb: ColorSelection(ColorScheme, Action(Of Int32)) spec.csharp: - uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32}) name: ColorSelection nameWithType: Tool.ColorSelection fullName: TinyLife.Tools.Tool.ColorSelection - name: ( nameWithType: ( fullName: ( - uid: TinyLife.Utilities.ColorScheme name: ColorScheme nameWithType: ColorScheme fullName: TinyLife.Utilities.ColorScheme - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Action`1 name: Action nameWithType: Action fullName: System.Action isExternal: true - name: < nameWithType: < fullName: < - uid: System.Int32 name: Int32 nameWithType: Int32 fullName: System.Int32 isExternal: true - name: '>' nameWithType: '>' fullName: '>' - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32}) name: ColorSelection nameWithType: Tool.ColorSelection fullName: TinyLife.Tools.Tool.ColorSelection - name: ( nameWithType: ( fullName: ( - uid: TinyLife.Utilities.ColorScheme name: ColorScheme nameWithType: ColorScheme fullName: TinyLife.Utilities.ColorScheme - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Action`1 name: Action nameWithType: Action fullName: System.Action isExternal: true - name: '(Of ' nameWithType: '(Of ' fullName: '(Of ' - uid: System.Int32 name: Int32 nameWithType: Int32 fullName: System.Int32 isExternal: true - name: ) nameWithType: ) fullName: ) - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,TinyLife.LnCategory,System.Collections.Generic.IEnumerable{System.String}) commentId: M:TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,TinyLife.LnCategory,System.Collections.Generic.IEnumerable{System.String}) parent: TinyLife.Tools.Tool isExternal: true name: BuildModeButton(String, Element.GenericCallback, Element.DrawCallback, Single, TextureRegion, LnCategory, IEnumerable) nameWithType: Tool.BuildModeButton(String, Element.GenericCallback, Element.DrawCallback, Single, TextureRegion, LnCategory, IEnumerable) fullName: TinyLife.Tools.Tool.BuildModeButton(System.String, MLEM.Ui.Elements.Element.GenericCallback, MLEM.Ui.Elements.Element.DrawCallback, System.Single, MLEM.Textures.TextureRegion, TinyLife.LnCategory, System.Collections.Generic.IEnumerable) nameWithType.vb: Tool.BuildModeButton(String, Element.GenericCallback, Element.DrawCallback, Single, TextureRegion, LnCategory, IEnumerable(Of String)) fullName.vb: TinyLife.Tools.Tool.BuildModeButton(System.String, MLEM.Ui.Elements.Element.GenericCallback, MLEM.Ui.Elements.Element.DrawCallback, System.Single, MLEM.Textures.TextureRegion, TinyLife.LnCategory, System.Collections.Generic.IEnumerable(Of System.String)) name.vb: BuildModeButton(String, Element.GenericCallback, Element.DrawCallback, Single, TextureRegion, LnCategory, IEnumerable(Of String)) spec.csharp: - uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,TinyLife.LnCategory,System.Collections.Generic.IEnumerable{System.String}) name: BuildModeButton nameWithType: Tool.BuildModeButton fullName: TinyLife.Tools.Tool.BuildModeButton - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Element.GenericCallback name: Element.GenericCallback nameWithType: Element.GenericCallback fullName: MLEM.Ui.Elements.Element.GenericCallback isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Element.DrawCallback name: Element.DrawCallback nameWithType: Element.DrawCallback fullName: MLEM.Ui.Elements.Element.DrawCallback isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Single name: Single nameWithType: Single fullName: System.Single isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Textures.TextureRegion name: TextureRegion nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: TinyLife.LnCategory name: LnCategory nameWithType: LnCategory fullName: TinyLife.LnCategory - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable isExternal: true - name: < nameWithType: < fullName: < - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: '>' nameWithType: '>' fullName: '>' - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,TinyLife.LnCategory,System.Collections.Generic.IEnumerable{System.String}) name: BuildModeButton nameWithType: Tool.BuildModeButton fullName: TinyLife.Tools.Tool.BuildModeButton - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Element.GenericCallback name: Element.GenericCallback nameWithType: Element.GenericCallback fullName: MLEM.Ui.Elements.Element.GenericCallback isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Ui.Elements.Element.DrawCallback name: Element.DrawCallback nameWithType: Element.DrawCallback fullName: MLEM.Ui.Elements.Element.DrawCallback isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Single name: Single nameWithType: Single fullName: System.Single isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: MLEM.Textures.TextureRegion name: TextureRegion nameWithType: TextureRegion fullName: MLEM.Textures.TextureRegion isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: TinyLife.LnCategory name: LnCategory nameWithType: LnCategory fullName: TinyLife.LnCategory - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable isExternal: true - name: '(Of ' nameWithType: '(Of ' fullName: '(Of ' - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ) nameWithType: ) fullName: ) - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true name: Equals(Object) nameWithType: Object.Equals(Object) fullName: System.Object.Equals(System.Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true name: Equals(Object, Object) nameWithType: Object.Equals(Object, Object) fullName: System.Object.Equals(System.Object, System.Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true name: GetHashCode() nameWithType: Object.GetHashCode() fullName: System.Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true name: GetType() nameWithType: Object.GetType() fullName: System.Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true name: MemberwiseClone() nameWithType: Object.MemberwiseClone() fullName: System.Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true name: ReferenceEquals(Object, Object) nameWithType: Object.ReferenceEquals(Object, Object) fullName: System.Object.ReferenceEquals(System.Object, System.Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true name: ToString() nameWithType: Object.ToString() fullName: System.Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.PlayModeTool.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy() nameWithType: Extensions.JsonCopy() fullName: TinyLife.Utilities.Extensions.JsonCopy() nameWithType.vb: Extensions.JsonCopy(Of PlayModeTool)() fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Tools.PlayModeTool)() name.vb: JsonCopy(Of PlayModeTool)() spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1 name: JsonCopy nameWithType: Extensions.JsonCopy fullName: TinyLife.Utilities.Extensions.JsonCopy - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1 name: JsonCopy(Of PlayModeTool) nameWithType: Extensions.JsonCopy(Of PlayModeTool) fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Tools.PlayModeTool) - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System commentId: N:System isExternal: true name: System nameWithType: System fullName: System - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(T) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(T) nameWithType.vb: Extensions.JsonCopy(Of T)(T) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T) name.vb: JsonCopy(Of T)(T) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy nameWithType: Extensions.JsonCopy fullName: TinyLife.Utilities.Extensions.JsonCopy - name: ( nameWithType: ( fullName: ( - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(Of T) nameWithType: Extensions.JsonCopy(Of T) fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T) - name: ( nameWithType: ( fullName: ( - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities - uid: TinyLife.Objects.Person commentId: T:TinyLife.Objects.Person parent: TinyLife.Objects name: Person nameWithType: Person fullName: TinyLife.Objects.Person - uid: TinyLife.Tools.PlayModeTool.SelectedPerson* commentId: Overload:TinyLife.Tools.PlayModeTool.SelectedPerson name: SelectedPerson nameWithType: PlayModeTool.SelectedPerson fullName: TinyLife.Tools.PlayModeTool.SelectedPerson - uid: TinyLife.Objects commentId: N:TinyLife.Objects name: TinyLife.Objects nameWithType: TinyLife.Objects fullName: TinyLife.Objects - uid: TinyLife.Tools.PlayModeTool.StatType commentId: T:TinyLife.Tools.PlayModeTool.StatType parent: TinyLife.Tools name: PlayModeTool.StatType nameWithType: PlayModeTool.StatType fullName: TinyLife.Tools.PlayModeTool.StatType - uid: TinyLife.Tools.PlayModeTool.SelectedStat* commentId: Overload:TinyLife.Tools.PlayModeTool.SelectedStat name: SelectedStat nameWithType: PlayModeTool.SelectedStat fullName: TinyLife.Tools.PlayModeTool.SelectedStat - uid: TinyLife.Tools.PlayModeTool.#ctor* commentId: Overload:TinyLife.Tools.PlayModeTool.#ctor name: PlayModeTool nameWithType: PlayModeTool.PlayModeTool fullName: TinyLife.Tools.PlayModeTool.PlayModeTool - uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) commentId: M:TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) parent: TinyLife.Tools.Tool isExternal: true name: Update(GameTime) nameWithType: Tool.Update(GameTime) fullName: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) spec.csharp: - uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) name: Update nameWithType: Tool.Update fullName: TinyLife.Tools.Tool.Update - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime) name: Update nameWithType: Tool.Update fullName: TinyLife.Tools.Tool.Update - name: ( nameWithType: ( fullName: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime isExternal: true - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.PlayModeTool.Update* commentId: Overload:TinyLife.Tools.PlayModeTool.Update name: Update nameWithType: PlayModeTool.Update fullName: TinyLife.Tools.PlayModeTool.Update - uid: Microsoft.Xna.Framework.GameTime commentId: T:Microsoft.Xna.Framework.GameTime parent: Microsoft.Xna.Framework isExternal: true name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework - uid: TinyLife.Tools.Tool.Opened commentId: M:TinyLife.Tools.Tool.Opened parent: TinyLife.Tools.Tool name: Opened() nameWithType: Tool.Opened() fullName: TinyLife.Tools.Tool.Opened() spec.csharp: - uid: TinyLife.Tools.Tool.Opened name: Opened nameWithType: Tool.Opened fullName: TinyLife.Tools.Tool.Opened - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.Opened name: Opened nameWithType: Tool.Opened fullName: TinyLife.Tools.Tool.Opened - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.PlayModeTool.Opened* commentId: Overload:TinyLife.Tools.PlayModeTool.Opened name: Opened nameWithType: PlayModeTool.Opened fullName: TinyLife.Tools.PlayModeTool.Opened - uid: TinyLife.Tools.Tool.Closed commentId: M:TinyLife.Tools.Tool.Closed parent: TinyLife.Tools.Tool name: Closed() nameWithType: Tool.Closed() fullName: TinyLife.Tools.Tool.Closed() spec.csharp: - uid: TinyLife.Tools.Tool.Closed name: Closed nameWithType: Tool.Closed fullName: TinyLife.Tools.Tool.Closed - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Tools.Tool.Closed name: Closed nameWithType: Tool.Closed fullName: TinyLife.Tools.Tool.Closed - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Tools.PlayModeTool.Closed* commentId: Overload:TinyLife.Tools.PlayModeTool.Closed name: Closed nameWithType: PlayModeTool.Closed fullName: TinyLife.Tools.PlayModeTool.Closed