2021-09-09 19:52:04 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Uis.Menus
commentId : T:TinyLife.Uis.Menus
id : Menus
parent : TinyLife.Uis
2022-01-01 17:06:03 +01:00
children :
2024-07-13 14:54:00 +02:00
- TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
- TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
2022-09-05 14:19:42 +02:00
- TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})
2024-04-14 17:55:54 +02:00
- TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)
2022-09-05 14:19:42 +02:00
- TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
2021-09-09 19:52:04 +02:00
langs :
- csharp
- vb
name : Menus
nameWithType : Menus
fullName : TinyLife.Uis.Menus
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Uis
2024-01-07 16:53:47 +01:00
summary : A set of static methods to deal with <xref href="MLEM.Ui" data-throw-if-not-resolved="false"></xref> and in-game menus
2021-09-09 19:52:04 +02:00
example : [ ]
syntax :
content : public static class Menus
content.vb : Public Module Menus
inheritance :
- System.Object
inheritedMembers :
- 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
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
commentId : M:TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
id : Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
2022-01-01 17:06:03 +01:00
parent : TinyLife.Uis.Menus
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Transition(Action, Action, TransitionType, TransitionType, float, float, float, Color?)
nameWithType : Menus.Transition(Action, Action, Menus.TransitionType, Menus.TransitionType, float, float, float, Color?)
fullName : TinyLife.Uis.Menus.Transition(System.Action, System.Action, TinyLife.Uis.Menus.TransitionType, TinyLife.Uis.Menus.TransitionType, float, float, float, Microsoft.Xna.Framework.Color?)
2022-01-01 17:06:03 +01:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Uis
2024-08-08 15:31:03 +02:00
summary : >-
Displays a screen transition that includes a fade out, an <code class="paramref">inbetween</code> action, followed by a fade back in and an <code class="paramref">after</code> action.
Whether a transition is currently active can be checked for using <xref href="TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)" data-throw-if-not-resolved="false"></xref>.
2022-01-01 17:06:03 +01:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public static void Transition(Action inbetween = null, Action after = null, Menus.TransitionType outType = TransitionType.Swipe, Menus.TransitionType inType = TransitionType.Swipe, float outSpeed = 0.05, float inSpeed = 0.05, float waitInbetween = 0.15, Color? color = null)
2022-01-01 17:06:03 +01:00
parameters :
- id : inbetween
type : System.Action
description : The action that is invoked while the screen is faded out, or null to invoke no action.
- id : after
type : System.Action
description : The action that is invoked after the full fade routine completes, or null to invoke no action.
- id : outType
type : TinyLife.Uis.Menus.TransitionType
description : The <xref href="TinyLife.Uis.Menus.TransitionType" data-throw-if-not-resolved="false"></xref> used for fading out.
- id : inType
type : TinyLife.Uis.Menus.TransitionType
description : The <xref href="TinyLife.Uis.Menus.TransitionType" data-throw-if-not-resolved="false"></xref> used for fading in.
- id : outSpeed
type : System.Single
2024-01-07 16:53:47 +01:00
description : The speed with which <code class="paramref">outType</code> is displayed per frame.
2022-01-01 17:06:03 +01:00
- id : inSpeed
type : System.Single
2024-01-07 16:53:47 +01:00
description : The speed with which <code class="paramref">inType</code> is displayed per frame.
2022-01-01 17:06:03 +01:00
- id : waitInbetween
type : System.Single
description : The amount of time to wait while the screen is faded out.
- id : color
2022-09-05 14:19:42 +02:00
type : System.Nullable{Microsoft.Xna.Framework.Color}
2022-01-01 17:06:03 +01:00
description : The color that the fade should have, or null to use black.
2023-03-30 18:07:55 +02:00
content.vb : Public Shared Sub Transition(inbetween As Action = Nothing, after As Action = Nothing, outType As Menus.TransitionType = TransitionType.Swipe, inType As Menus.TransitionType = TransitionType.Swipe, outSpeed As Single = 0.05, inSpeed As Single = 0.05, waitInbetween As Single = 0.15, color As Color? = Nothing)
2022-01-01 17:06:03 +01:00
overload : TinyLife.Uis.Menus.Transition*
exceptions :
- type : System.InvalidOperationException
commentId : T:System.InvalidOperationException
description : Thrown when a fade is already happening when this method is called.
2023-03-30 18:07:55 +02:00
nameWithType.vb : Menus.Transition(Action, Action, Menus.TransitionType, Menus.TransitionType, Single, Single, Single, Color?)
fullName.vb : TinyLife.Uis.Menus.Transition(System.Action, System.Action, TinyLife.Uis.Menus.TransitionType, TinyLife.Uis.Menus.TransitionType, Single, Single, Single, Microsoft.Xna.Framework.Color?)
name.vb : Transition(Action, Action, TransitionType, TransitionType, Single, Single, Single, Color?)
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})
commentId : M:TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})
id : GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})
2022-05-24 13:36:05 +02:00
parent : TinyLife.Uis.Menus
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GamepadHint(Anchor, Func<Options, Buttons>, Vector2, Vector2?, Func<bool>)
nameWithType : Menus.GamepadHint(Anchor, Func<Options, Buttons>, Vector2, Vector2?, Func<bool>)
fullName : TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor, System.Func<TinyLife.Options, Microsoft.Xna.Framework.Input.Buttons>, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2?, System.Func<bool>)
2022-05-24 13:36:05 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Uis
2024-01-07 16:53:47 +01:00
summary : >-
Returns a new image that displays information about what gamepad <xref href="Microsoft.Xna.Framework.Input.Buttons" data-throw-if-not-resolved="false"></xref> can be pressed to invoke an action.
This image is automatically hidden if gamepad controls are not currently being used, or if <code class="paramref">shouldHide</code> returns true.
2022-05-24 13:36:05 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public static Image GamepadHint(Anchor anchor, Func<Options, Buttons> button, Vector2 positionOffset = default, Vector2? size = null, Func<bool> shouldHide = null)
2022-05-24 13:36:05 +02:00
parameters :
- id : anchor
type : MLEM.Ui.Anchor
description : The anchor for the image.
- id : button
2022-09-05 14:19:42 +02:00
type : System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons}
2022-05-24 13:36:05 +02:00
description : A function that returns the button that should be displayed.
- id : positionOffset
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Vector2
2022-05-24 13:36:05 +02:00
description : The position offset for the image.
- id : size
2022-09-05 14:19:42 +02:00
type : System.Nullable{Microsoft.Xna.Framework.Vector2}
2023-03-30 18:07:55 +02:00
description : The size of the image, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> for the image to be 12 pixels big.
2022-05-24 13:36:05 +02:00
- id : shouldHide
type : System.Func{System.Boolean}
description : A function that determines whether the hint should currently be hidden, or null to only hide it when gamepad controls are not currently being used.
return :
type : MLEM.Ui.Elements.Image
description : The created gamepad hint image.
content.vb : Public Shared Function GamepadHint(anchor As Anchor, button As Func(Of Options, Buttons), positionOffset As Vector2 = Nothing, size As Vector2? = Nothing, shouldHide As Func(Of Boolean) = Nothing) As Image
overload : TinyLife.Uis.Menus.GamepadHint*
2023-03-30 18:07:55 +02:00
nameWithType.vb : Menus.GamepadHint(Anchor, Func(Of Options, Buttons), Vector2, Vector2?, Func(Of Boolean))
fullName.vb : TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor, System.Func(Of TinyLife.Options, Microsoft.Xna.Framework.Input.Buttons), Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2?, System.Func(Of Boolean))
name.vb : GamepadHint(Anchor, Func(Of Options, Buttons), Vector2, Vector2?, Func(Of Boolean))
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)
commentId : M:TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)
id : MenuBackground(System.Single,System.Single,System.Single,System.Single)
2023-05-11 14:56:06 +02:00
parent : TinyLife.Uis.Menus
langs :
- csharp
- vb
2024-04-14 17:55:54 +02:00
name : MenuBackground(float, float, float, float)
nameWithType : Menus.MenuBackground(float, float, float, float)
fullName : TinyLife.Uis.Menus.MenuBackground(float, float, float, float)
2023-05-11 14:56:06 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Uis
2024-01-07 16:53:47 +01:00
summary : Returns a <xref href="MLEM.Textures.NinePatch" data-throw-if-not-resolved="false"></xref> that contains a menu background texture region, based on the given data.
2023-05-11 14:56:06 +02:00
example : [ ]
syntax :
2024-04-14 17:55:54 +02:00
content : public static NinePatch MenuBackground(float x, float y, float width = 1, float height = 1)
2023-05-11 14:56:06 +02:00
parameters :
- id : x
2024-04-14 17:55:54 +02:00
type : System.Single
2023-05-11 14:56:06 +02:00
description : The x coordinate of the menu background section to return, which is expected to be between 0 and 1.
- id : y
2024-04-14 17:55:54 +02:00
type : System.Single
2023-05-11 14:56:06 +02:00
description : The y coordinate of the menu background section to return, which is expected to be between 0 and 1.
- id : width
2024-04-14 17:55:54 +02:00
type : System.Single
2023-05-11 14:56:06 +02:00
description : The width of the menu background section to return, which is expected to be between 1 and 2.
- id : height
2024-04-14 17:55:54 +02:00
type : System.Single
2023-05-11 14:56:06 +02:00
description : The height of the menu background section to return, which is expected to be between 1 and 2.
return :
type : MLEM.Textures.NinePatch
description : A <xref href="MLEM.Textures.NinePatch" data-throw-if-not-resolved="false"></xref> that contains a menu background texture region.
2024-04-14 17:55:54 +02:00
content.vb : Public Shared Function MenuBackground(x As Single, y As Single, width As Single = 1, height As Single = 1) As NinePatch
2023-05-11 14:56:06 +02:00
overload : TinyLife.Uis.Menus.MenuBackground*
2024-04-14 17:55:54 +02:00
nameWithType.vb : Menus.MenuBackground(Single, Single, Single, Single)
fullName.vb : TinyLife.Uis.Menus.MenuBackground(Single, Single, Single, Single)
name.vb : MenuBackground(Single, Single, Single, Single)
2024-07-13 14:54:00 +02:00
- uid : TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
commentId : M:TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
id : CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
2024-06-09 17:05:30 +02:00
parent : TinyLife.Uis.Menus
langs :
- csharp
- vb
2024-07-13 14:54:00 +02:00
name : CreateLotPreview(Map, string, Point, float, Color, bool, Func<string, ExportedLot>)
nameWithType : Menus.CreateLotPreview(Map, string, Point, float, Color, bool, Func<string, ExportedLot>)
fullName : TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, string, Microsoft.Xna.Framework.Point, float, Microsoft.Xna.Framework.Color, bool, System.Func<string, TinyLife.World.ExportedLot>)
2024-06-09 17:05:30 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Uis
summary : A helper method to create a <xref href="Microsoft.Xna.Framework.Graphics.Texture2D" data-throw-if-not-resolved="false"></xref> instance that contains a rendered preview of an <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> at the given file path.
example : [ ]
syntax :
2024-07-13 14:54:00 +02:00
content : public static Func<Texture2D> CreateLotPreview(Map map, string fileName, Point size, float tileScale, Color backgroundColor, bool async = true, Func<string, ExportedLot> load = null)
2024-06-09 17:05:30 +02:00
parameters :
- id : map
type : TinyLife.World.Map
description : The map to mock rendering the lot on.
- id : fileName
type : System.String
description : The file name of the <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> file.
- id : size
type : Microsoft.Xna.Framework.Point
description : The size of the texture that should be returned.
- id : tileScale
type : System.Single
description : The scale that tiles should be rendered with.
- id : backgroundColor
type : Microsoft.Xna.Framework.Color
description : The background color to use for the texture.
- id : async
type : System.Boolean
description : Whether the <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously.
2024-07-13 14:54:00 +02:00
- id : load
type : System.Func{System.String,TinyLife.World.ExportedLot}
2024-08-08 15:31:03 +02:00
description : A function that can optionally be used to load the <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> to draw. It receives the <code class="paramref">fileName</code> passed as an argument.
2024-06-09 17:05:30 +02:00
return :
type : System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
description : A function that gathers the generated texture. When first invoked, it is generated. Subsequent calls will return the same generated texture.
2024-07-13 14:54:00 +02:00
content.vb : Public Shared Function CreateLotPreview(map As Map, fileName As String, size As Point, tileScale As Single, backgroundColor As Color, async As Boolean = True, load As Func(Of String, ExportedLot) = Nothing) As Func(Of Texture2D)
2024-06-09 17:05:30 +02:00
overload : TinyLife.Uis.Menus.CreateLotPreview*
2024-07-13 14:54:00 +02:00
nameWithType.vb : Menus.CreateLotPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedLot))
fullName.vb : TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, String, Microsoft.Xna.Framework.Point, Single, Microsoft.Xna.Framework.Color, Boolean, System.Func(Of String, TinyLife.World.ExportedLot))
name.vb : CreateLotPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedLot))
- uid : TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
commentId : M:TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
id : CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
2024-06-09 17:05:30 +02:00
parent : TinyLife.Uis.Menus
langs :
- csharp
- vb
2024-07-13 14:54:00 +02:00
name : CreateHouseholdPreview(Map, string, Point, float, Color, bool, Func<string, ExportedHousehold>)
nameWithType : Menus.CreateHouseholdPreview(Map, string, Point, float, Color, bool, Func<string, ExportedHousehold>)
fullName : TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map, string, Microsoft.Xna.Framework.Point, float, Microsoft.Xna.Framework.Color, bool, System.Func<string, TinyLife.World.ExportedHousehold>)
2024-06-09 17:05:30 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Uis
2024-07-13 14:54:00 +02:00
summary : A helper method that creates a preview of an <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> at the given file path.
2024-06-09 17:05:30 +02:00
example : [ ]
syntax :
2024-07-13 14:54:00 +02:00
content : public static Func<Texture2D> CreateHouseholdPreview(Map map, string fileName, Point size, float scale, Color backgroundColor, bool async = true, Func<string, ExportedHousehold> load = null)
2024-06-09 17:05:30 +02:00
parameters :
2024-07-13 14:54:00 +02:00
- id : map
type : TinyLife.World.Map
2024-08-08 15:31:03 +02:00
description : The map to create the household preview on.
2024-06-09 17:05:30 +02:00
- id : fileName
type : System.String
description : The file name to load the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> from.
2024-07-13 14:54:00 +02:00
- id : size
type : Microsoft.Xna.Framework.Point
2024-08-08 15:31:03 +02:00
description : The size of the resulting preview image, in pixels.
2024-07-13 14:54:00 +02:00
- id : scale
type : System.Single
2024-08-08 15:31:03 +02:00
description : The scale that the household is drawn onto the preview image with.
2024-07-13 14:54:00 +02:00
- id : backgroundColor
type : Microsoft.Xna.Framework.Color
2024-08-08 15:31:03 +02:00
description : The color to use for the background of the preview image.
2024-06-09 17:05:30 +02:00
- id : async
type : System.Boolean
description : Whether the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously.
2024-07-13 14:54:00 +02:00
- id : load
type : System.Func{System.String,TinyLife.World.ExportedHousehold}
2024-08-08 15:31:03 +02:00
description : A function that can optionally be used to load the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> to draw. It receives the <code class="paramref">fileName</code> passed as an argument.
2024-06-09 17:05:30 +02:00
return :
2024-07-13 14:54:00 +02:00
type : System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
description : A function that gathers the generated texture. When first invoked, it is generated. Subsequent calls will return the same generated texture.
content.vb : Public Shared Function CreateHouseholdPreview(map As Map, fileName As String, size As Point, scale As Single, backgroundColor As Color, async As Boolean = True, load As Func(Of String, ExportedHousehold) = Nothing) As Func(Of Texture2D)
2024-06-09 17:05:30 +02:00
overload : TinyLife.Uis.Menus.CreateHouseholdPreview*
2024-07-13 14:54:00 +02:00
nameWithType.vb : Menus.CreateHouseholdPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedHousehold))
fullName.vb : TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map, String, Microsoft.Xna.Framework.Point, Single, Microsoft.Xna.Framework.Color, Boolean, System.Func(Of String, TinyLife.World.ExportedHousehold))
name.vb : CreateHouseholdPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedHousehold))
2021-09-09 19:52:04 +02:00
references :
- uid : MLEM.Ui
commentId : N : MLEM.Ui
isExternal : true
2021-10-14 20:30:40 +02:00
name : MLEM.Ui
nameWithType : MLEM.Ui
fullName : MLEM.Ui
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
2021-09-09 19:52:04 +02:00
- uid : TinyLife.Uis
commentId : N : TinyLife.Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-09-09 19:52:04 +02:00
name : TinyLife.Uis
nameWithType : TinyLife.Uis
fullName : TinyLife.Uis
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis
name : Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis
name : Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.html
2021-09-09 19:52:04 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-09-09 19:52:04 +02:00
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-09-09 19:52:04 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-09-09 19:52:04 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-09-09 19:52:04 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-09-09 19:52:04 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-09-09 19:52:04 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-09-09 19:52:04 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-09-09 19:52:04 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-09-09 19:52:04 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-09-09 19:52:04 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-09-09 19:52:04 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-09-09 19:52:04 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-09-09 19:52:04 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-09-09 19:52:04 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-09-09 19:52:04 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-09-09 19:52:04 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-09-09 19:52:04 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-09-09 19:52:04 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-09-09 19:52:04 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-09-09 19:52:04 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-09-09 19:52:04 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-09-09 19:52:04 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-09-09 19:52:04 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-09-09 19:52:04 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-09-09 19:52:04 +02:00
- name : (
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-09-09 19:52:04 +02:00
name : System
nameWithType : System
fullName : System
2024-08-08 15:31:03 +02:00
- uid : TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)
commentId : M:TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)
2024-07-26 12:47:59 +02:00
isExternal : true
2024-08-08 15:31:03 +02:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsTransitioning_MLEM_Ui_UiSystem_
name : IsTransitioning(UiSystem)
nameWithType : Extensions.IsTransitioning(UiSystem)
fullName : TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)
name : IsTransitioning
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsTransitioning_MLEM_Ui_UiSystem_
- name : (
- uid : MLEM.Ui.UiSystem
name : UiSystem
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.IsTransitioning(MLEM.Ui.UiSystem)
name : IsTransitioning
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsTransitioning_MLEM_Ui_UiSystem_
- name : (
- uid : MLEM.Ui.UiSystem
name : UiSystem
isExternal : true
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Uis.Menus.TransitionType
commentId : T:TinyLife.Uis.Menus.TransitionType
parent : TinyLife.Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.html
2022-01-01 17:06:03 +01:00
name : Menus.TransitionType
nameWithType : Menus.TransitionType
fullName : TinyLife.Uis.Menus.TransitionType
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Uis.Menus
name : Menus
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis.Menus.TransitionType
name : TransitionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.TransitionType.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife.Uis.Menus
name : Menus
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis.Menus.TransitionType
name : TransitionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.TransitionType.html
2022-01-01 17:06:03 +01:00
- uid : System.InvalidOperationException
commentId : T:System.InvalidOperationException
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.invalidoperationexception
name : InvalidOperationException
nameWithType : InvalidOperationException
fullName : System.InvalidOperationException
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Uis.Menus.Transition*
commentId : Overload:TinyLife.Uis.Menus.Transition
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_Transition_System_Action_System_Action_TinyLife_Uis_Menus_TransitionType_TinyLife_Uis_Menus_TransitionType_System_Single_System_Single_System_Single_System_Nullable_Microsoft_Xna_Framework_Color__
2022-01-01 17:06:03 +01:00
name : Transition
nameWithType : Menus.Transition
fullName : TinyLife.Uis.Menus.Transition
- uid : System.Action
commentId : T:System.Action
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action
2022-01-01 17:06:03 +01:00
name : Action
nameWithType : Action
fullName : System.Action
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
2022-09-05 14:19:42 +02:00
- uid : System.Nullable{Microsoft.Xna.Framework.Color}
commentId : T:System.Nullable{Microsoft.Xna.Framework.Color}
2022-01-01 17:06:03 +01:00
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
name : Color?
nameWithType : Color?
fullName : Microsoft.Xna.Framework.Color?
2022-01-01 17:06:03 +01:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-01-01 17:06:03 +01:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-01-01 17:06:03 +01:00
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-01-01 17:06:03 +01:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-01-01 17:06:03 +01:00
- uid : System.Nullable`1
commentId : T:System.Nullable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-01-01 17:06:03 +01:00
name : Nullable<T>
nameWithType : Nullable<T>
fullName : System.Nullable<T>
nameWithType.vb : Nullable(Of T)
fullName.vb : System.Nullable(Of T)
name.vb : Nullable(Of T)
spec.csharp :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-01-01 17:06:03 +01:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
2022-01-01 17:06:03 +01:00
- name : T
- name : )
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Input.Buttons
commentId : T:Microsoft.Xna.Framework.Input.Buttons
parent : Microsoft.Xna.Framework.Input
isExternal : true
name : Buttons
nameWithType : Buttons
fullName : Microsoft.Xna.Framework.Input.Buttons
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Uis.Menus.GamepadHint*
commentId : Overload:TinyLife.Uis.Menus.GamepadHint
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_GamepadHint_MLEM_Ui_Anchor_System_Func_TinyLife_Options_Microsoft_Xna_Framework_Input_Buttons__Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Vector2__System_Func_System_Boolean__
2022-05-24 13:36:05 +02:00
name : GamepadHint
nameWithType : Menus.GamepadHint
fullName : TinyLife.Uis.Menus.GamepadHint
- uid : MLEM.Ui.Anchor
commentId : T:MLEM.Ui.Anchor
parent : MLEM.Ui
isExternal : true
name : Anchor
nameWithType : Anchor
fullName : MLEM.Ui.Anchor
2022-09-05 14:19:42 +02:00
- uid : System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons}
commentId : T:System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons}
2022-05-24 13:36:05 +02:00
parent : System
definition : System.Func`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-05-24 13:36:05 +02:00
name : Func<Options, Buttons>
nameWithType : Func<Options, Buttons>
2022-09-05 14:19:42 +02:00
fullName : System.Func<TinyLife.Options, Microsoft.Xna.Framework.Input.Buttons>
2022-05-24 13:36:05 +02:00
nameWithType.vb : Func(Of Options, Buttons)
2022-09-05 14:19:42 +02:00
fullName.vb : System.Func(Of TinyLife.Options, Microsoft.Xna.Framework.Input.Buttons)
2022-05-24 13:36:05 +02:00
name.vb : Func(Of Options, Buttons)
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-05-24 13:36:05 +02:00
- name : <
- uid : TinyLife.Options
name : Options
2024-01-07 16:53:47 +01:00
href : TinyLife.Options.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Input.Buttons
2022-05-24 13:36:05 +02:00
name : Buttons
isExternal : true
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Options
name : Options
2024-01-07 16:53:47 +01:00
href : TinyLife.Options.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Input.Buttons
2022-05-24 13:36:05 +02:00
name : Buttons
isExternal : true
- name : )
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
commentId : T:Microsoft.Xna.Framework.Vector2
parent : Microsoft.Xna.Framework
2022-05-24 13:36:05 +02:00
isExternal : true
name : Vector2
nameWithType : Vector2
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.Vector2
- uid : System.Nullable{Microsoft.Xna.Framework.Vector2}
commentId : T:System.Nullable{Microsoft.Xna.Framework.Vector2}
2022-05-24 13:36:05 +02:00
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
name : Vector2?
nameWithType : Vector2?
fullName : Microsoft.Xna.Framework.Vector2?
2022-05-24 13:36:05 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
2022-05-24 13:36:05 +02:00
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-05-24 13:36:05 +02:00
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
2022-05-24 13:36:05 +02:00
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-05-24 13:36:05 +02:00
- uid : System.Func{System.Boolean}
commentId : T:System.Func{System.Boolean}
parent : System
definition : System.Func`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
name : Func<bool>
nameWithType : Func<bool>
fullName : System.Func<bool>
2022-05-24 13:36:05 +02:00
nameWithType.vb : Func(Of Boolean)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Func(Of Boolean)
2022-05-24 13:36:05 +02:00
name.vb : Func(Of Boolean)
spec.csharp :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2022-05-24 13:36:05 +02:00
- name : <
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-05-24 13:36:05 +02:00
- name : '>'
spec.vb :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-05-24 13:36:05 +02:00
- name : )
- uid : MLEM.Ui.Elements.Image
commentId : T:MLEM.Ui.Elements.Image
parent : MLEM.Ui.Elements
isExternal : true
name : Image
nameWithType : Image
fullName : MLEM.Ui.Elements.Image
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Input
commentId : N : Microsoft.Xna.Framework.Input
isExternal : true
name : Microsoft.Xna.Framework.Input
nameWithType : Microsoft.Xna.Framework.Input
fullName : Microsoft.Xna.Framework.Input
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Input
name : Input
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Input
name : Input
isExternal : true
2022-05-24 13:36:05 +02:00
- uid : System.Func`2
commentId : T:System.Func`2
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-05-24 13:36:05 +02:00
name : Func<T, TResult>
nameWithType : Func<T, TResult>
fullName : System.Func<T, TResult>
nameWithType.vb : Func(Of T, TResult)
fullName.vb : System.Func(Of T, TResult)
name.vb : Func(Of T, TResult)
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-05-24 13:36:05 +02:00
- name : <
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : TResult
- name : )
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
2022-05-24 13:36:05 +02:00
- uid : System.Func`1
commentId : T:System.Func`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2022-05-24 13:36:05 +02:00
name : Func<TResult>
nameWithType : Func<TResult>
fullName : System.Func<TResult>
nameWithType.vb : Func(Of TResult)
fullName.vb : System.Func(Of TResult)
name.vb : Func(Of TResult)
spec.csharp :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2022-05-24 13:36:05 +02:00
- name : <
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- name : TResult
- name : )
- uid : MLEM.Ui.Elements
commentId : N : MLEM.Ui.Elements
isExternal : true
name : MLEM.Ui.Elements
nameWithType : MLEM.Ui.Elements
fullName : MLEM.Ui.Elements
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
2023-05-11 14:56:06 +02:00
- uid : MLEM.Textures.NinePatch
commentId : T:MLEM.Textures.NinePatch
parent : MLEM.Textures
isExternal : true
name : NinePatch
nameWithType : NinePatch
fullName : MLEM.Textures.NinePatch
- uid : TinyLife.Uis.Menus.MenuBackground*
commentId : Overload:TinyLife.Uis.Menus.MenuBackground
2024-04-14 17:55:54 +02:00
href : TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_MenuBackground_System_Single_System_Single_System_Single_System_Single_
2023-05-11 14:56:06 +02:00
name : MenuBackground
nameWithType : Menus.MenuBackground
fullName : TinyLife.Uis.Menus.MenuBackground
- uid : MLEM.Textures
commentId : N : MLEM.Textures
isExternal : true
name : MLEM.Textures
nameWithType : MLEM.Textures
fullName : MLEM.Textures
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
2024-06-09 17:05:30 +02:00
- uid : Microsoft.Xna.Framework.Graphics.Texture2D
commentId : T:Microsoft.Xna.Framework.Graphics.Texture2D
parent : Microsoft.Xna.Framework.Graphics
isExternal : true
name : Texture2D
nameWithType : Texture2D
fullName : Microsoft.Xna.Framework.Graphics.Texture2D
- uid : TinyLife.World.ExportedLot
commentId : T:TinyLife.World.ExportedLot
parent : TinyLife.World
href : TinyLife.World.ExportedLot.html
name : ExportedLot
nameWithType : ExportedLot
fullName : TinyLife.World.ExportedLot
- uid : TinyLife.Uis.Menus.CreateLotPreview*
commentId : Overload:TinyLife.Uis.Menus.CreateLotPreview
2024-07-13 14:54:00 +02:00
href : TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateLotPreview_TinyLife_World_Map_System_String_Microsoft_Xna_Framework_Point_System_Single_Microsoft_Xna_Framework_Color_System_Boolean_System_Func_System_String_TinyLife_World_ExportedLot__
2024-06-09 17:05:30 +02:00
name : CreateLotPreview
nameWithType : Menus.CreateLotPreview
fullName : TinyLife.Uis.Menus.CreateLotPreview
- uid : TinyLife.World.Map
commentId : T:TinyLife.World.Map
parent : TinyLife.World
href : TinyLife.World.Map.html
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
2024-08-08 15:31:03 +02:00
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
2024-06-09 17:05:30 +02:00
- uid : Microsoft.Xna.Framework.Point
commentId : T:Microsoft.Xna.Framework.Point
parent : Microsoft.Xna.Framework
isExternal : true
name : Point
nameWithType : Point
fullName : Microsoft.Xna.Framework.Point
- uid : Microsoft.Xna.Framework.Color
commentId : T:Microsoft.Xna.Framework.Color
parent : Microsoft.Xna.Framework
isExternal : true
name : Color
nameWithType : Color
fullName : Microsoft.Xna.Framework.Color
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2024-07-13 14:54:00 +02:00
- uid : System.Func{System.String,TinyLife.World.ExportedLot}
commentId : T:System.Func{System.String,TinyLife.World.ExportedLot}
parent : System
definition : System.Func`2
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<string, ExportedLot>
nameWithType : Func<string, ExportedLot>
fullName : System.Func<string, TinyLife.World.ExportedLot>
nameWithType.vb : Func(Of String, ExportedLot)
fullName.vb : System.Func(Of String, TinyLife.World.ExportedLot)
name.vb : Func(Of String, ExportedLot)
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : <
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- uid : TinyLife.World.ExportedLot
name : ExportedLot
href : TinyLife.World.ExportedLot.html
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- uid : TinyLife.World.ExportedLot
name : ExportedLot
href : TinyLife.World.ExportedLot.html
- name : )
2024-06-09 17:05:30 +02:00
- uid : System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
commentId : T:System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
parent : System
definition : System.Func`1
href : https://learn.microsoft.com/dotnet/api/system.func-1
name : Func<Texture2D>
nameWithType : Func<Texture2D>
fullName : System.Func<Microsoft.Xna.Framework.Graphics.Texture2D>
nameWithType.vb : Func(Of Texture2D)
fullName.vb : System.Func(Of Microsoft.Xna.Framework.Graphics.Texture2D)
name.vb : Func(Of Texture2D)
spec.csharp :
- uid : System.Func`1
name : Func
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : <
- uid : Microsoft.Xna.Framework.Graphics.Texture2D
name : Texture2D
isExternal : true
- name : '>'
spec.vb :
- uid : System.Func`1
name : Func
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
- uid : Microsoft.Xna.Framework.Graphics.Texture2D
name : Texture2D
isExternal : true
- name : )
- uid : Microsoft.Xna.Framework.Graphics
commentId : N : Microsoft.Xna.Framework.Graphics
isExternal : true
name : Microsoft.Xna.Framework.Graphics
nameWithType : Microsoft.Xna.Framework.Graphics
fullName : Microsoft.Xna.Framework.Graphics
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Graphics
name : Graphics
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Graphics
name : Graphics
isExternal : true
- uid : TinyLife.World
commentId : N : TinyLife.World
href : TinyLife.html
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
spec.csharp :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.World
name : World
href : TinyLife.World.html
spec.vb :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.World
name : World
href : TinyLife.World.html
- uid : TinyLife.World.ExportedHousehold
commentId : T:TinyLife.World.ExportedHousehold
parent : TinyLife.World
href : TinyLife.World.ExportedHousehold.html
name : ExportedHousehold
nameWithType : ExportedHousehold
fullName : TinyLife.World.ExportedHousehold
- uid : TinyLife.Uis.Menus.CreateHouseholdPreview*
commentId : Overload:TinyLife.Uis.Menus.CreateHouseholdPreview
2024-07-13 14:54:00 +02:00
href : TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateHouseholdPreview_TinyLife_World_Map_System_String_Microsoft_Xna_Framework_Point_System_Single_Microsoft_Xna_Framework_Color_System_Boolean_System_Func_System_String_TinyLife_World_ExportedHousehold__
2024-06-09 17:05:30 +02:00
name : CreateHouseholdPreview
nameWithType : Menus.CreateHouseholdPreview
fullName : TinyLife.Uis.Menus.CreateHouseholdPreview
2024-07-13 14:54:00 +02:00
- uid : System.Func{System.String,TinyLife.World.ExportedHousehold}
commentId : T:System.Func{System.String,TinyLife.World.ExportedHousehold}
2024-06-09 17:05:30 +02:00
parent : System
2024-07-13 14:54:00 +02:00
definition : System.Func`2
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<string, ExportedHousehold>
nameWithType : Func<string, ExportedHousehold>
fullName : System.Func<string, TinyLife.World.ExportedHousehold>
nameWithType.vb : Func(Of String, ExportedHousehold)
fullName.vb : System.Func(Of String, TinyLife.World.ExportedHousehold)
name.vb : Func(Of String, ExportedHousehold)
2024-06-09 17:05:30 +02:00
spec.csharp :
2024-07-13 14:54:00 +02:00
- uid : System.Func`2
name : Func
2024-06-09 17:05:30 +02:00
isExternal : true
2024-07-13 14:54:00 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2024-06-09 17:05:30 +02:00
- name : <
2024-07-13 14:54:00 +02:00
- uid : System.String
name : string
2024-06-09 17:05:30 +02:00
isExternal : true
2024-07-13 14:54:00 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2024-06-09 17:05:30 +02:00
- name : ','
- name : " "
2024-07-13 14:54:00 +02:00
- uid : TinyLife.World.ExportedHousehold
name : ExportedHousehold
href : TinyLife.World.ExportedHousehold.html
2024-06-09 17:05:30 +02:00
- name : '>'
spec.vb :
2024-07-13 14:54:00 +02:00
- uid : System.Func`2
name : Func
2024-06-09 17:05:30 +02:00
isExternal : true
2024-07-13 14:54:00 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2024-06-09 17:05:30 +02:00
- name : (
- name : Of
- name : " "
2024-07-13 14:54:00 +02:00
- uid : System.String
name : String
2024-06-09 17:05:30 +02:00
isExternal : true
2024-07-13 14:54:00 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2024-06-09 17:05:30 +02:00
- name : ','
- name : " "
2024-07-13 14:54:00 +02:00
- uid : TinyLife.World.ExportedHousehold
name : ExportedHousehold
href : TinyLife.World.ExportedHousehold.html
2024-06-09 17:05:30 +02:00
- name : )