TinyLifeWeb/docs/api/TinyLife.World.Wallpaper.yml

2068 lines
85 KiB
YAML
Raw Permalink Normal View History

2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.World.Wallpaper
commentId: T:TinyLife.World.Wallpaper
id: Wallpaper
parent: TinyLife.World
children:
2024-03-09 19:49:55 +01:00
- TinyLife.World.Wallpaper.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,System.Int32[],MLEM.Textures.TextureRegion)
2021-08-04 06:51:12 +02:00
- TinyLife.World.Wallpaper.BaseName
2024-03-09 19:49:55 +01:00
- TinyLife.World.Wallpaper.ColorSettings
2024-01-07 16:53:47 +01:00
- TinyLife.World.Wallpaper.Colors
2023-11-04 19:27:38 +01:00
- TinyLife.World.Wallpaper.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,TinyLife.World.WallMode,System.Boolean,System.Boolean,System.Single,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
- TinyLife.World.Wallpaper.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.GameTime,TinyLife.World.Map,System.Single)
2021-08-04 06:51:12 +02:00
- TinyLife.World.Wallpaper.GetPrice
- TinyLife.World.Wallpaper.Icon
- TinyLife.World.Wallpaper.Name
- TinyLife.World.Wallpaper.Price
2022-09-05 14:19:42 +02:00
- TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
- TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme[],MLEM.Textures.TextureRegion,System.Int32[],System.Type)
2024-03-09 19:49:55 +01:00
- TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,MLEM.Textures.TextureRegion,System.Type)
2023-10-11 16:05:32 +02:00
- TinyLife.World.Wallpaper.TextureRegion
- TinyLife.World.Wallpaper.Textures
2021-08-04 06:51:12 +02:00
- TinyLife.World.Wallpaper.Wallpapers
langs:
- csharp
- vb
name: Wallpaper
nameWithType: Wallpaper
fullName: TinyLife.World.Wallpaper
type: Class
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Wallpaper
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2023-11-04 19:27:38 +01:00
startLine: 21
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
A wallpaper is a single-instanced object that can be attached to a <xref href="TinyLife.World.Wall" data-throw-if-not-resolved="false"></xref>, which makes the wall render a different texture.
To register custom wallpapers, use <xref href="TinyLife.World.Wallpaper.Register(System.String%2cSystem.Int32%2cSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%2cMicrosoft.Xna.Framework.Point%2cTinyLife.Utilities.ColorScheme%2cMLEM.Textures.TextureRegion%2cSystem.Nullable%7bSystem.Int32%7d%2cSystem.Type)" data-throw-if-not-resolved="false"></xref>. Note that registered wallpapers need to use a texture generated by <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: >-
[JsonConverter(typeof(Wallpaper.Converter))]
2023-05-26 15:16:22 +02:00
public class Wallpaper
2021-08-04 06:51:12 +02:00
content.vb: >-
<JsonConverter(GetType(Wallpaper.Converter))>
2023-05-26 15:16:22 +02:00
Public Class Wallpaper
2021-08-04 06:51:12 +02:00
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
extensionMethods:
- TinyLife.World.Wallpaper.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.World.Wallpaper.Wallpapers
commentId: F:TinyLife.World.Wallpaper.Wallpapers
id: Wallpapers
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Wallpapers
nameWithType: Wallpaper.Wallpapers
fullName: TinyLife.World.Wallpaper.Wallpapers
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Wallpapers
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2023-11-04 19:27:38 +01:00
startLine: 29
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
The registry for all <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> objects in the game and mods.
Use <xref href="TinyLife.World.Wallpaper.Register(System.String%2cSystem.Int32%2cSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%2cMicrosoft.Xna.Framework.Point%2cTinyLife.Utilities.ColorScheme%2cMLEM.Textures.TextureRegion%2cSystem.Nullable%7bSystem.Int32%7d%2cSystem.Type)" data-throw-if-not-resolved="false"></xref> to register custom wallpapers.
2021-08-04 06:51:12 +02:00
example: []
syntax:
2022-05-24 13:36:05 +02:00
content: public static readonly ReadOnlyDictionary<string, Wallpaper[]> Wallpapers
2021-08-04 06:51:12 +02:00
return:
2022-05-24 13:36:05 +02:00
type: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.Wallpaper[]}
content.vb: Public Shared ReadOnly Wallpapers As ReadOnlyDictionary(Of String, Wallpaper())
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.BaseName
commentId: F:TinyLife.World.Wallpaper.BaseName
id: BaseName
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: BaseName
nameWithType: Wallpaper.BaseName
fullName: TinyLife.World.Wallpaper.BaseName
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: BaseName
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 65
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: The name of this type of wallpaper. Whereas <xref href="TinyLife.World.Wallpaper.Name" data-throw-if-not-resolved="false"></xref> has the index of its color scheme appended to it, this one is just the type's name.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly string BaseName
return:
type: System.String
content.vb: Public ReadOnly BaseName As String
- uid: TinyLife.World.Wallpaper.Name
commentId: F:TinyLife.World.Wallpaper.Name
id: Name
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Name
nameWithType: Wallpaper.Name
fullName: TinyLife.World.Wallpaper.Name
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Name
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 69
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: The name of this specific wallpaper. This is comprised of the <xref href="TinyLife.World.Wallpaper.BaseName" data-throw-if-not-resolved="false"></xref> with its color scheme index attached to it.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly string Name
return:
type: System.String
content.vb: Public ReadOnly Name As String
- uid: TinyLife.World.Wallpaper.Price
commentId: F:TinyLife.World.Wallpaper.Price
id: Price
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Price
nameWithType: Wallpaper.Price
fullName: TinyLife.World.Wallpaper.Price
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Price
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 73
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: The price of this wallpaper. Can be retrieved easily using <xref href="TinyLife.World.Wallpaper.GetPrice" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly int Price
return:
type: System.Int32
content.vb: Public ReadOnly Price As Integer
2024-03-09 19:49:55 +01:00
- uid: TinyLife.World.Wallpaper.ColorSettings
commentId: F:TinyLife.World.Wallpaper.ColorSettings
id: ColorSettings
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2024-03-09 19:49:55 +01:00
name: ColorSettings
nameWithType: Wallpaper.ColorSettings
fullName: TinyLife.World.Wallpaper.ColorSettings
2021-08-04 06:51:12 +02:00
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2024-03-09 19:49:55 +01:00
id: ColorSettings
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 77
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-04-14 17:55:54 +02:00
summary: The color settings used by this wallpaper.
example: []
2021-08-04 06:51:12 +02:00
syntax:
2024-03-09 19:49:55 +01:00
content: public readonly ColorSettings ColorSettings
2021-08-04 06:51:12 +02:00
return:
2024-03-09 19:49:55 +01:00
type: TinyLife.Utilities.ColorSettings
content.vb: Public ReadOnly ColorSettings As ColorSettings
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.Colors
commentId: F:TinyLife.World.Wallpaper.Colors
id: Colors
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Colors
nameWithType: Wallpaper.Colors
fullName: TinyLife.World.Wallpaper.Colors
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Colors
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 82
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
The set of colors applied to this wallpaper instance.
2024-04-14 17:55:54 +02:00
Each entry represents an index in the <xref href="TinyLife.World.Wallpaper.ColorSettings" data-throw-if-not-resolved="false"></xref> of this wallpaper.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly int[] Colors
return:
type: System.Int32[]
content.vb: Public ReadOnly Colors As Integer()
- uid: TinyLife.World.Wallpaper.Icon
commentId: F:TinyLife.World.Wallpaper.Icon
id: Icon
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Icon
nameWithType: Wallpaper.Icon
fullName: TinyLife.World.Wallpaper.Icon
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Icon
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 87
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
The build mode icon for this object, which represents the category / theme / mod that it comes from.
If this value is nonnull, the icon will be displayed in the corner of the build mode button for this object.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly TextureRegion Icon
return:
type: MLEM.Textures.TextureRegion
content.vb: Public ReadOnly Icon As TextureRegion
2023-10-11 16:05:32 +02:00
- uid: TinyLife.World.Wallpaper.Textures
commentId: F:TinyLife.World.Wallpaper.Textures
id: Textures
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Textures
nameWithType: Wallpaper.Textures
fullName: TinyLife.World.Wallpaper.Textures
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-10-11 16:05:32 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Textures
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 91
2023-10-11 16:05:32 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: The texture regions that this wallpaper's <xref href="TinyLife.World.Wallpaper.TextureRegion" data-throw-if-not-resolved="false"></xref> is on.
2023-10-11 16:05:32 +02:00
example: []
syntax:
content: public readonly Dictionary<Point, TextureRegion> Textures
return:
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
content.vb: Public ReadOnly Textures As Dictionary(Of Point, TextureRegion)
- uid: TinyLife.World.Wallpaper.TextureRegion
commentId: F:TinyLife.World.Wallpaper.TextureRegion
id: TextureRegion
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: TextureRegion
nameWithType: Wallpaper.TextureRegion
fullName: TinyLife.World.Wallpaper.TextureRegion
type: Field
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-10-11 16:05:32 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TextureRegion
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 96
2023-10-11 16:05:32 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
The texture region on the <xref href="TinyLife.World.Wallpaper.Textures" data-throw-if-not-resolved="false"></xref> that this wallpaper's texture is located at.
Additional texture regions will be gathered to the right of this region's coordinates.
2023-10-11 16:05:32 +02:00
example: []
syntax:
content: public readonly Point TextureRegion
return:
type: Microsoft.Xna.Framework.Point
content.vb: Public ReadOnly TextureRegion As Point
2024-03-09 19:49:55 +01:00
- uid: TinyLife.World.Wallpaper.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,System.Int32[],MLEM.Textures.TextureRegion)
commentId: M:TinyLife.World.Wallpaper.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,System.Int32[],MLEM.Textures.TextureRegion)
id: '#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,System.Int32[],MLEM.Textures.TextureRegion)'
2022-01-01 17:06:03 +01:00
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2024-03-09 19:49:55 +01:00
name: Wallpaper(string, string, int, Dictionary<Point, TextureRegion>, Point, ColorSettings, int[], TextureRegion)
nameWithType: Wallpaper.Wallpaper(string, string, int, Dictionary<Point, TextureRegion>, Point, ColorSettings, int[], TextureRegion)
fullName: TinyLife.World.Wallpaper.Wallpaper(string, string, int, System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorSettings, int[], MLEM.Textures.TextureRegion)
2022-01-01 17:06:03 +01:00
type: Constructor
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-01-01 17:06:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 102
2022-01-01 17:06:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
Creates a new wallpaper with the given settings.
To create an instance of a custom wallpaper class, use <xref href="TinyLife.World.Wallpaper.Register(System.String%2cSystem.Int32%2cSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%2cMicrosoft.Xna.Framework.Point%2cTinyLife.Utilities.ColorScheme%2cMLEM.Textures.TextureRegion%2cSystem.Nullable%7bSystem.Int32%7d%2cSystem.Type)" data-throw-if-not-resolved="false"></xref>.
2022-01-01 17:06:03 +01:00
example: []
syntax:
2024-03-09 19:49:55 +01:00
content: protected Wallpaper(string baseName, string name, int price, Dictionary<Point, TextureRegion> textures, Point textureRegion, ColorSettings colorSettings, int[] colors, TextureRegion icon)
2022-01-01 17:06:03 +01:00
parameters:
- id: baseName
type: System.String
- id: name
type: System.String
- id: price
type: System.Int32
2022-05-26 13:20:58 +02:00
- id: textures
2022-09-05 14:19:42 +02:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2022-01-01 17:06:03 +01:00
- id: textureRegion
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Point
2024-03-09 19:49:55 +01:00
- id: colorSettings
type: TinyLife.Utilities.ColorSettings
2022-01-01 17:06:03 +01:00
- id: colors
type: System.Int32[]
- id: icon
type: MLEM.Textures.TextureRegion
2024-03-09 19:49:55 +01:00
content.vb: Protected Sub New(baseName As String, name As String, price As Integer, textures As Dictionary(Of Point, TextureRegion), textureRegion As Point, colorSettings As ColorSettings, colors As Integer(), icon As TextureRegion)
2022-01-01 17:06:03 +01:00
overload: TinyLife.World.Wallpaper.#ctor*
2024-03-09 19:49:55 +01:00
nameWithType.vb: Wallpaper.New(String, String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorSettings, Integer(), TextureRegion)
fullName.vb: TinyLife.World.Wallpaper.New(String, String, Integer, System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorSettings, Integer(), MLEM.Textures.TextureRegion)
name.vb: New(String, String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorSettings, Integer(), TextureRegion)
2023-11-04 19:27:38 +01:00
- uid: TinyLife.World.Wallpaper.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,TinyLife.World.WallMode,System.Boolean,System.Boolean,System.Single,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
commentId: M:TinyLife.World.Wallpaper.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,TinyLife.World.WallMode,System.Boolean,System.Boolean,System.Single,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
id: Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,TinyLife.World.WallMode,System.Boolean,System.Boolean,System.Single,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2023-11-04 19:27:38 +01:00
name: Draw(GameTime, SpriteBatch, Map, Point, Point, int, Vector2, WallMode, bool, bool, float, bool, float, Color?)
nameWithType: Wallpaper.Draw(GameTime, SpriteBatch, Map, Point, Point, int, Vector2, WallMode, bool, bool, float, bool, float, Color?)
fullName: TinyLife.World.Wallpaper.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, int, Microsoft.Xna.Framework.Vector2, TinyLife.World.WallMode, bool, bool, float, bool, float, Microsoft.Xna.Framework.Color?)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Draw
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 130
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: Draws this wallpaper on the given wall with the given data.
2021-08-04 06:51:12 +02:00
example: []
syntax:
2023-11-04 19:27:38 +01:00
content: public virtual void Draw(GameTime time, SpriteBatch batch, Map map, Point pos1, Point pos2, int floor, Vector2 drawPos, WallMode mode, bool isDown, bool vertical, float scale, bool shadow, float depthOffset = 0, Color? overrideColor = null)
2021-08-04 06:51:12 +02:00
parameters:
- id: time
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
description: The current game time
- id: batch
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Graphics.SpriteBatch
2021-08-04 06:51:12 +02:00
description: The sprite batch used for rendering
2023-11-04 19:27:38 +01:00
- id: map
type: TinyLife.World.Map
2023-11-05 20:57:09 +01:00
description: The map.
2023-11-04 19:27:38 +01:00
- id: pos1
type: Microsoft.Xna.Framework.Point
2023-11-05 20:57:09 +01:00
description: The first position in the <xref href="TinyLife.Objects.WallLike.Positions" data-throw-if-not-resolved="false"></xref> array.
2023-11-04 19:27:38 +01:00
- id: pos2
type: Microsoft.Xna.Framework.Point
2023-11-05 20:57:09 +01:00
description: The second position in the <xref href="TinyLife.Objects.WallLike.Positions" data-throw-if-not-resolved="false"></xref> array.
2023-11-04 19:27:38 +01:00
- id: floor
type: System.Int32
2023-11-05 20:57:09 +01:00
description: The floor.
2021-08-04 06:51:12 +02:00
- id: drawPos
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Vector2
2021-08-04 06:51:12 +02:00
description: The position, in screen coordinates, that the wall should be drawn at
- id: mode
type: TinyLife.World.WallMode
description: The <xref href="TinyLife.World.WallMode" data-throw-if-not-resolved="false"></xref> that the wall should be drawn with
- id: isDown
type: System.Boolean
description: Whether or not the wall is rendering with a reduced height
- id: vertical
type: System.Boolean
description: Whether or not the wall is vertical (or horizontal) in the world
- id: scale
type: System.Single
description: The scale that the wall should be rendered with
- id: shadow
type: System.Boolean
description: Whether or not the shadow texture should be applied on top of the texture
2023-11-04 19:27:38 +01:00
- id: depthOffset
type: System.Single
2023-11-05 20:57:09 +01:00
description: An offset that is optionally added to the draw depth.
2021-08-04 06:51:12 +02:00
- id: overrideColor
2022-09-05 14:19:42 +02:00
type: System.Nullable{Microsoft.Xna.Framework.Color}
2021-08-04 06:51:12 +02:00
description: A color that this object should be rendered with, instead of its default color
2023-11-04 19:27:38 +01:00
content.vb: Public Overridable Sub Draw(time As GameTime, batch As SpriteBatch, map As Map, pos1 As Point, pos2 As Point, floor As Integer, drawPos As Vector2, mode As WallMode, isDown As Boolean, vertical As Boolean, scale As Single, shadow As Boolean, depthOffset As Single = 0, overrideColor As Color? = Nothing)
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Wallpaper.Draw*
2023-11-04 19:27:38 +01:00
nameWithType.vb: Wallpaper.Draw(GameTime, SpriteBatch, Map, Point, Point, Integer, Vector2, WallMode, Boolean, Boolean, Single, Boolean, Single, Color?)
fullName.vb: TinyLife.World.Wallpaper.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, Integer, Microsoft.Xna.Framework.Vector2, TinyLife.World.WallMode, Boolean, Boolean, Single, Boolean, Single, Microsoft.Xna.Framework.Color?)
name.vb: Draw(GameTime, SpriteBatch, Map, Point, Point, Integer, Vector2, WallMode, Boolean, Boolean, Single, Boolean, Single, Color?)
- uid: TinyLife.World.Wallpaper.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.GameTime,TinyLife.World.Map,System.Single)
commentId: M:TinyLife.World.Wallpaper.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.GameTime,TinyLife.World.Map,System.Single)
id: DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.GameTime,TinyLife.World.Map,System.Single)
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2023-11-04 19:27:38 +01:00
name: DrawUi(Element, SpriteBatch, GameTime, Map, float)
nameWithType: Wallpaper.DrawUi(Element, SpriteBatch, GameTime, Map, float)
fullName: TinyLife.World.Wallpaper.DrawUi(MLEM.Ui.Elements.Element, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.GameTime, TinyLife.World.Map, float)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: DrawUi
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 159
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: Draws this wallpaper on the given <xref href="MLEM.Ui.Elements.Element" data-throw-if-not-resolved="false"></xref> in ui space
2021-08-04 06:51:12 +02:00
example: []
syntax:
2023-11-04 19:27:38 +01:00
content: public virtual void DrawUi(Element e, SpriteBatch batch, GameTime time, Map map, float drawScale)
2021-08-04 06:51:12 +02:00
parameters:
- id: e
type: MLEM.Ui.Elements.Element
description: The element to draw on
- id: batch
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Graphics.SpriteBatch
2021-08-04 06:51:12 +02:00
description: The batch to draw with
- id: time
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
description: The current game time
2023-11-04 19:27:38 +01:00
- id: map
type: TinyLife.World.Map
2023-11-05 20:57:09 +01:00
description: The map.
2021-08-04 06:51:12 +02:00
- id: drawScale
type: System.Single
2023-11-04 19:27:38 +01:00
description: The scale to draw with.
content.vb: Public Overridable Sub DrawUi(e As Element, batch As SpriteBatch, time As GameTime, map As Map, drawScale As Single)
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Wallpaper.DrawUi*
2023-11-04 19:27:38 +01:00
nameWithType.vb: Wallpaper.DrawUi(Element, SpriteBatch, GameTime, Map, Single)
fullName.vb: TinyLife.World.Wallpaper.DrawUi(MLEM.Ui.Elements.Element, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.GameTime, TinyLife.World.Map, Single)
name.vb: DrawUi(Element, SpriteBatch, GameTime, Map, Single)
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.GetPrice
commentId: M:TinyLife.World.Wallpaper.GetPrice
id: GetPrice
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: GetPrice()
nameWithType: Wallpaper.GetPrice()
fullName: TinyLife.World.Wallpaper.GetPrice()
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: GetPrice
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 170
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: Returns the price for this wallpaper item.
2021-08-04 06:51:12 +02:00
example: []
syntax:
2022-01-01 17:06:03 +01:00
content: public virtual float GetPrice()
2021-08-04 06:51:12 +02:00
return:
type: System.Single
2023-10-11 16:05:32 +02:00
description: The price.
2023-03-30 18:07:55 +02:00
content.vb: Public Overridable Function GetPrice() As Single
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Wallpaper.GetPrice*
2022-09-05 14:19:42 +02:00
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
commentId: M:TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
id: Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme, TextureRegion, int?, Type)
nameWithType: Wallpaper.Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme, TextureRegion, int?, Type)
fullName: TinyLife.World.Wallpaper.Register(string, int, System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme, MLEM.Textures.TextureRegion, int?, System.Type)
2022-09-05 14:19:42 +02:00
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 186
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
Creates and registers a new wallpaper with the given settings.
Note that the <code class="paramref">textures</code> should be one generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>, as otherwise, graphical issues will occur.
2022-09-05 14:19:42 +02:00
example: []
syntax:
2024-03-09 19:49:55 +01:00
content: public static Wallpaper[] Register(string name, int price, Dictionary<Point, TextureRegion> textures, Point textureRegion, ColorScheme color, TextureRegion icon = null, int? defaultColor = null, Type constructedType = null)
2022-09-05 14:19:42 +02:00
parameters:
- id: name
type: System.String
description: The name of the wallpaper type
- id: price
type: System.Int32
description: The price of a single wallpaper of this type
- id: textures
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
description: The texture that this wallpaper should use. This needs to have been generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>.
- id: textureRegion
type: Microsoft.Xna.Framework.Point
description: The top left texture region of this wallpaper (on the original texture, not the mask)
- id: color
type: TinyLife.Utilities.ColorScheme
description: The color scheme of the wallpaper.
- id: icon
type: MLEM.Textures.TextureRegion
description: The build mode category icon of this object
- id: defaultColor
type: System.Nullable{System.Int32}
description: The color that this wallpaper should display with by default in the wallpaper tool.
- id: constructedType
type: System.Type
description: The <xref href="System.Type" data-throw-if-not-resolved="false"></xref> that should be constructed to create this wallpaper. Defaults to <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
2024-03-09 19:49:55 +01:00
return:
type: TinyLife.World.Wallpaper[]
content.vb: Public Shared Function Register(name As String, price As Integer, textures As Dictionary(Of Point, TextureRegion), textureRegion As Point, color As ColorScheme, icon As TextureRegion = Nothing, defaultColor As Integer? = Nothing, constructedType As Type = Nothing) As Wallpaper()
2022-09-05 14:19:42 +02:00
overload: TinyLife.World.Wallpaper.Register*
2023-03-30 18:07:55 +02:00
nameWithType.vb: Wallpaper.Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme, TextureRegion, Integer?, Type)
fullName.vb: TinyLife.World.Wallpaper.Register(String, Integer, System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme, MLEM.Textures.TextureRegion, Integer?, System.Type)
name.vb: Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme, TextureRegion, Integer?, Type)
2022-09-05 14:19:42 +02:00
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme[],MLEM.Textures.TextureRegion,System.Int32[],System.Type)
commentId: M:TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme[],MLEM.Textures.TextureRegion,System.Int32[],System.Type)
id: Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme[],MLEM.Textures.TextureRegion,System.Int32[],System.Type)
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme[], TextureRegion, int[], Type)
nameWithType: Wallpaper.Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme[], TextureRegion, int[], Type)
fullName: TinyLife.World.Wallpaper.Register(string, int, System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme[], MLEM.Textures.TextureRegion, int[], System.Type)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Register
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 202
2024-03-09 19:49:55 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-04-14 17:55:54 +02:00
summary: >-
Creates and registers a new wallpaper with the given settings.
Note that the <code class="paramref">textures</code> should be one generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>, as otherwise, graphical issues will occur.
example: []
2024-03-09 19:49:55 +01:00
syntax:
content: public static Wallpaper[] Register(string name, int price, Dictionary<Point, TextureRegion> textures, Point textureRegion, ColorScheme[] colors, TextureRegion icon = null, int[] defaultColors = null, Type constructedType = null)
parameters:
- id: name
type: System.String
2024-04-14 17:55:54 +02:00
description: The name of the wallpaper type
2024-03-09 19:49:55 +01:00
- id: price
type: System.Int32
2024-04-14 17:55:54 +02:00
description: The price of a single wallpaper of this type
2024-03-09 19:49:55 +01:00
- id: textures
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2024-04-14 17:55:54 +02:00
description: The texture that this wallpaper should use. This needs to have been generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>.
2024-03-09 19:49:55 +01:00
- id: textureRegion
type: Microsoft.Xna.Framework.Point
2024-04-14 17:55:54 +02:00
description: The top left texture region of this wallpaper (on the original texture, not the mask)
2024-03-09 19:49:55 +01:00
- id: colors
type: TinyLife.Utilities.ColorScheme[]
2024-04-14 17:55:54 +02:00
description: The color schemes of the wallpaper.
2024-03-09 19:49:55 +01:00
- id: icon
type: MLEM.Textures.TextureRegion
2024-04-14 17:55:54 +02:00
description: The build mode category icon of this object
2024-03-09 19:49:55 +01:00
- id: defaultColors
type: System.Int32[]
2024-04-14 17:55:54 +02:00
description: The colosr that this wallpaper should display with by default in the wallpaper tool.
2024-03-09 19:49:55 +01:00
- id: constructedType
type: System.Type
2024-04-14 17:55:54 +02:00
description: The <xref href="System.Type" data-throw-if-not-resolved="false"></xref> that should be constructed to create this wallpaper. Defaults to <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
2024-03-09 19:49:55 +01:00
return:
type: TinyLife.World.Wallpaper[]
content.vb: Public Shared Function Register(name As String, price As Integer, textures As Dictionary(Of Point, TextureRegion), textureRegion As Point, colors As ColorScheme(), icon As TextureRegion = Nothing, defaultColors As Integer() = Nothing, constructedType As Type = Nothing) As Wallpaper()
overload: TinyLife.World.Wallpaper.Register*
nameWithType.vb: Wallpaper.Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme(), TextureRegion, Integer(), Type)
fullName.vb: TinyLife.World.Wallpaper.Register(String, Integer, System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme(), MLEM.Textures.TextureRegion, Integer(), System.Type)
name.vb: Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme(), TextureRegion, Integer(), Type)
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,MLEM.Textures.TextureRegion,System.Type)
commentId: M:TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,MLEM.Textures.TextureRegion,System.Type)
id: Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorSettings,MLEM.Textures.TextureRegion,System.Type)
parent: TinyLife.World.Wallpaper
langs:
- csharp
- vb
name: Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorSettings, TextureRegion, Type)
nameWithType: Wallpaper.Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorSettings, TextureRegion, Type)
fullName: TinyLife.World.Wallpaper.Register(string, int, System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorSettings, MLEM.Textures.TextureRegion, System.Type)
type: Method
source:
remote:
path: TinyLife/World/Wallpaper.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register
path: ../TinyLife/World/Wallpaper.cs
2024-04-14 17:55:54 +02:00
startLine: 221
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: >-
Creates and registers a new wallpaper with the given settings.
Note that the <code class="paramref">textures</code> should be one generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>, as otherwise, graphical issues will occur.
2021-08-04 06:51:12 +02:00
example: []
syntax:
2024-03-09 19:49:55 +01:00
content: public static Wallpaper[] Register(string name, int price, Dictionary<Point, TextureRegion> textures, Point textureRegion, ColorSettings colorSettings, TextureRegion icon = null, Type constructedType = null)
2021-08-04 06:51:12 +02:00
parameters:
- id: name
type: System.String
description: The name of the wallpaper type
- id: price
type: System.Int32
description: The price of a single wallpaper of this type
2022-05-26 13:20:58 +02:00
- id: textures
2022-09-05 14:19:42 +02:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
description: The texture that this wallpaper should use. This needs to have been generated using <xref href="TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D%2cSystem.Int32%2cSystem.Int32%2cMLEM.Data.RuntimeTexturePacker%2cSystem.Action%7bSystem.Collections.Generic.Dictionary%7bMicrosoft.Xna.Framework.Point%2cMLEM.Textures.TextureRegion%7d%7d)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
- id: textureRegion
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
description: The top left texture region of this wallpaper (on the original texture, not the mask)
2024-03-09 19:49:55 +01:00
- id: colorSettings
type: TinyLife.Utilities.ColorSettings
2024-01-07 16:53:47 +01:00
description: The color schemes for each layer of the wallpaper. If there is more than one entry, additional layers will automatically be gathered to the right of the passed <code class="paramref">textureRegion</code>.
2022-01-01 17:06:03 +01:00
- id: icon
type: MLEM.Textures.TextureRegion
description: The build mode category icon of this object
- id: constructedType
type: System.Type
description: The <xref href="System.Type" data-throw-if-not-resolved="false"></xref> that should be constructed to create this wallpaper. Defaults to <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
2023-05-26 15:16:22 +02:00
return:
type: TinyLife.World.Wallpaper[]
description: The registered wallpapers.
2024-03-09 19:49:55 +01:00
content.vb: Public Shared Function Register(name As String, price As Integer, textures As Dictionary(Of Point, TextureRegion), textureRegion As Point, colorSettings As ColorSettings, icon As TextureRegion = Nothing, constructedType As Type = Nothing) As Wallpaper()
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Wallpaper.Register*
2024-03-09 19:49:55 +01:00
nameWithType.vb: Wallpaper.Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorSettings, TextureRegion, Type)
fullName.vb: TinyLife.World.Wallpaper.Register(String, Integer, System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorSettings, MLEM.Textures.TextureRegion, System.Type)
name.vb: Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorSettings, TextureRegion, Type)
2021-08-04 06:51:12 +02:00
references:
- uid: TinyLife.World.Wall
commentId: T:TinyLife.World.Wall
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wall.html
2021-08-04 06:51:12 +02:00
name: Wall
nameWithType: Wall
fullName: TinyLife.World.Wall
2022-09-05 14:19:42 +02:00
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
commentId: M:TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
2021-08-04 06:51:12 +02:00
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Register_System_String_System_Int32_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion__Microsoft_Xna_Framework_Point_TinyLife_Utilities_ColorScheme_MLEM_Textures_TextureRegion_System_Nullable_System_Int32__System_Type_
2023-03-30 18:07:55 +02:00
name: Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme, TextureRegion, int?, Type)
nameWithType: Wallpaper.Register(string, int, Dictionary<Point, TextureRegion>, Point, ColorScheme, TextureRegion, int?, Type)
fullName: TinyLife.World.Wallpaper.Register(string, int, System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme, MLEM.Textures.TextureRegion, int?, System.Type)
nameWithType.vb: Wallpaper.Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme, TextureRegion, Integer?, Type)
fullName.vb: TinyLife.World.Wallpaper.Register(String, Integer, System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, TinyLife.Utilities.ColorScheme, MLEM.Textures.TextureRegion, Integer?, System.Type)
name.vb: Register(String, Integer, Dictionary(Of Point, TextureRegion), Point, ColorScheme, TextureRegion, Integer?, Type)
spec.csharp:
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
name: Register
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Register_System_String_System_Int32_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion__Microsoft_Xna_Framework_Point_TinyLife_Utilities_ColorScheme_MLEM_Textures_TextureRegion_System_Nullable_System_Int32__System_Type_
2023-03-30 18:07:55 +02:00
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.ColorScheme.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
spec.vb:
- uid: TinyLife.World.Wallpaper.Register(System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,TinyLife.Utilities.ColorScheme,MLEM.Textures.TextureRegion,System.Nullable{System.Int32},System.Type)
name: Register
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Register_System_String_System_Int32_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion__Microsoft_Xna_Framework_Point_TinyLife_Utilities_ColorScheme_MLEM_Textures_TextureRegion_System_Nullable_System_Int32__System_Type_
2023-03-30 18:07:55 +02:00
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.ColorScheme.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
2022-09-05 14:19:42 +02:00
- uid: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
commentId: M:TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
2021-08-04 06:51:12 +02:00
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_ApplyMasks_Microsoft_Xna_Framework_Graphics_Texture2D_System_Int32_System_Int32_MLEM_Data_RuntimeTexturePacker_System_Action_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion___
2023-03-30 18:07:55 +02:00
name: ApplyMasks(Texture2D, int, int, RuntimeTexturePacker, Action<Dictionary<Point, TextureRegion>>)
nameWithType: WallMode.ApplyMasks(Texture2D, int, int, RuntimeTexturePacker, Action<Dictionary<Point, TextureRegion>>)
fullName: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D, int, int, MLEM.Data.RuntimeTexturePacker, System.Action<System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>>)
nameWithType.vb: WallMode.ApplyMasks(Texture2D, Integer, Integer, RuntimeTexturePacker, Action(Of Dictionary(Of Point, TextureRegion)))
fullName.vb: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D, Integer, Integer, MLEM.Data.RuntimeTexturePacker, System.Action(Of System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion)))
name.vb: ApplyMasks(Texture2D, Integer, Integer, RuntimeTexturePacker, Action(Of Dictionary(Of Point, TextureRegion)))
spec.csharp:
- uid: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
name: ApplyMasks
2024-01-07 16:53:47 +01:00
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_ApplyMasks_Microsoft_Xna_Framework_Graphics_Texture2D_System_Int32_System_Int32_MLEM_Data_RuntimeTexturePacker_System_Action_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion___
2023-03-30 18:07:55 +02:00
- name: (
- uid: Microsoft.Xna.Framework.Graphics.Texture2D
name: Texture2D
isExternal: true
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: MLEM.Data.RuntimeTexturePacker
name: RuntimeTexturePacker
isExternal: true
- name: ','
- name: " "
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
name: ApplyMasks
2024-01-07 16:53:47 +01:00
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_ApplyMasks_Microsoft_Xna_Framework_Graphics_Texture2D_System_Int32_System_Int32_MLEM_Data_RuntimeTexturePacker_System_Action_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion___
2023-03-30 18:07:55 +02:00
- name: (
- uid: Microsoft.Xna.Framework.Graphics.Texture2D
name: Texture2D
isExternal: true
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: MLEM.Data.RuntimeTexturePacker
name: RuntimeTexturePacker
isExternal: true
- name: ','
- name: " "
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
- name: )
- name: )
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World
commentId: N:TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2021-08-04 06:51:12 +02:00
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
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.World
name: World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.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.World
name: World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.html
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: TinyLife.World.Wallpaper.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name: JsonCopy<Wallpaper>(Wallpaper)
nameWithType: Extensions.JsonCopy<Wallpaper>(Wallpaper)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.Wallpaper>(TinyLife.World.Wallpaper)
nameWithType.vb: Extensions.JsonCopy(Of Wallpaper)(Wallpaper)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.Wallpaper)(TinyLife.World.Wallpaper)
name.vb: JsonCopy(Of Wallpaper)(Wallpaper)
2021-08-04 06:51:12 +02:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Wallpaper)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-03-30 18:07:55 +02:00
- name: '>'
2021-08-04 06:51:12 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Wallpaper)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-03-30 18:07:55 +02:00
- name: )
2021-08-04 06:51:12 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2021-08-04 06:51:12 +02:00
- 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-08-04 06:51:12 +02:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(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)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- name: T
- name: '>'
2021-08-04 06:51:12 +02:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- name: T
- name: )
2021-08-04 06:51:12 +02:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html
2021-08-04 06:51:12 +02:00
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2021-08-04 06:51:12 +02:00
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
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.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.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.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper
commentId: T:TinyLife.World.Wallpaper
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2021-08-04 06:51:12 +02:00
name: Wallpaper
nameWithType: Wallpaper
fullName: TinyLife.World.Wallpaper
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.Wallpaper[]}
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.Wallpaper[]}
parent: System.Collections.ObjectModel
definition: System.Collections.ObjectModel.ReadOnlyDictionary`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name: ReadOnlyDictionary<string, Wallpaper[]>
nameWithType: ReadOnlyDictionary<string, Wallpaper[]>
fullName: System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.World.Wallpaper[]>
2022-05-24 13:36:05 +02:00
nameWithType.vb: ReadOnlyDictionary(Of String, Wallpaper())
2023-03-30 18:07:55 +02:00
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.World.Wallpaper())
2022-05-24 13:36:05 +02:00
name.vb: ReadOnlyDictionary(Of String, Wallpaper())
2021-08-04 06:51:12 +02:00
spec.csharp:
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name: <
- uid: System.String
2023-03-30 18:07:55 +02:00
name: string
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-03-30 18:07:55 +02:00
- name: '['
- name: ']'
2021-08-04 06:51:12 +02:00
- name: '>'
spec.vb:
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.String
name: String
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-03-30 18:07:55 +02:00
- name: (
- name: )
2021-08-04 06:51:12 +02:00
- name: )
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary`2
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2022-05-24 13:36:05 +02:00
name: ReadOnlyDictionary<TKey, TValue>
nameWithType: ReadOnlyDictionary<TKey, TValue>
fullName: System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>
nameWithType.vb: ReadOnlyDictionary(Of TKey, TValue)
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb: ReadOnlyDictionary(Of TKey, TValue)
2021-08-04 06:51:12 +02:00
spec.csharp:
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name: <
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- name: TValue
- name: '>'
spec.vb:
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
2021-08-04 06:51:12 +02:00
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- name: TValue
- name: )
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel
commentId: N:System.Collections.ObjectModel
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name: System.Collections.ObjectModel
nameWithType: System.Collections.ObjectModel
fullName: System.Collections.ObjectModel
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.Name
commentId: F:TinyLife.World.Wallpaper.Name
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Name
2023-03-30 18:07:55 +02:00
name: Name
nameWithType: Wallpaper.Name
fullName: TinyLife.World.Wallpaper.Name
2021-08-04 06:51:12 +02:00
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.BaseName
commentId: F:TinyLife.World.Wallpaper.BaseName
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_BaseName
2023-03-30 18:07:55 +02:00
name: BaseName
nameWithType: Wallpaper.BaseName
fullName: TinyLife.World.Wallpaper.BaseName
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.GetPrice
commentId: M:TinyLife.World.Wallpaper.GetPrice
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_GetPrice
2023-03-30 18:07:55 +02:00
name: GetPrice()
nameWithType: Wallpaper.GetPrice()
fullName: TinyLife.World.Wallpaper.GetPrice()
spec.csharp:
- uid: TinyLife.World.Wallpaper.GetPrice
name: GetPrice
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_GetPrice
2023-03-30 18:07:55 +02:00
- name: (
- name: )
spec.vb:
- uid: TinyLife.World.Wallpaper.GetPrice
name: GetPrice
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_GetPrice
2023-03-30 18:07:55 +02:00
- name: (
- name: )
2021-08-04 06:51:12 +02:00
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
2024-03-09 19:49:55 +01:00
- uid: TinyLife.Utilities.ColorSettings
commentId: T:TinyLife.Utilities.ColorSettings
2021-08-04 06:51:12 +02:00
parent: TinyLife.Utilities
2024-03-09 19:49:55 +01:00
href: TinyLife.Utilities.ColorSettings.html
name: ColorSettings
nameWithType: ColorSettings
fullName: TinyLife.Utilities.ColorSettings
2024-04-14 17:55:54 +02:00
- uid: TinyLife.World.Wallpaper.ColorSettings
commentId: F:TinyLife.World.Wallpaper.ColorSettings
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_ColorSettings
name: ColorSettings
nameWithType: Wallpaper.ColorSettings
fullName: TinyLife.World.Wallpaper.ColorSettings
2021-08-04 06:51:12 +02:00
- uid: System.Int32[]
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int[]
nameWithType: int[]
fullName: int[]
nameWithType.vb: Integer()
fullName.vb: Integer()
name.vb: Integer()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: int
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '['
- name: ']'
2021-08-04 06:51:12 +02:00
spec.vb:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: Integer
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: (
- name: )
2021-08-04 06:51:12 +02:00
- uid: MLEM.Textures.TextureRegion
commentId: T:MLEM.Textures.TextureRegion
parent: MLEM.Textures
isExternal: true
name: TextureRegion
nameWithType: TextureRegion
fullName: MLEM.Textures.TextureRegion
- uid: MLEM.Textures
commentId: N:MLEM.Textures
isExternal: true
name: MLEM.Textures
nameWithType: MLEM.Textures
fullName: MLEM.Textures
2023-03-30 18:07:55 +02:00
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
2023-10-11 16:05:32 +02:00
- uid: TinyLife.World.Wallpaper.TextureRegion
commentId: F:TinyLife.World.Wallpaper.TextureRegion
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_TextureRegion
2023-10-11 16:05:32 +02:00
name: TextureRegion
nameWithType: Wallpaper.TextureRegion
fullName: TinyLife.World.Wallpaper.TextureRegion
2022-09-05 14:19:42 +02:00
- uid: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
commentId: T:System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2022-05-26 13:20:58 +02:00
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
name: Dictionary<Point, TextureRegion>
nameWithType: Dictionary<Point, TextureRegion>
2022-09-05 14:19:42 +02:00
fullName: System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>
2022-05-26 13:20:58 +02:00
nameWithType.vb: Dictionary(Of Point, TextureRegion)
2022-09-05 14:19:42 +02:00
fullName.vb: System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion)
2022-05-26 13:20:58 +02:00
name.vb: Dictionary(Of Point, TextureRegion)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
- name: <
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Point
2022-05-26 13:20:58 +02:00
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Point
2022-05-26 13:20:58 +02:00
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
name: Dictionary<TKey, TValue>
nameWithType: Dictionary<TKey, TValue>
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
nameWithType.vb: Dictionary(Of TKey, TValue)
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
name.vb: Dictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
- name: <
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2022-05-26 13:20:58 +02:00
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- name: TValue
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-05-26 13:20:58 +02:00
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
2023-10-11 16:05:32 +02:00
- uid: TinyLife.World.Wallpaper.Textures
commentId: F:TinyLife.World.Wallpaper.Textures
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Textures
2023-10-11 16:05:32 +02:00
name: Textures
nameWithType: Wallpaper.Textures
fullName: TinyLife.World.Wallpaper.Textures
- 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
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
2023-10-11 16:05:32 +02:00
- uid: TinyLife.World.Wallpaper.#ctor*
commentId: Overload:TinyLife.World.Wallpaper.#ctor
2024-03-09 19:49:55 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper__ctor_System_String_System_String_System_Int32_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion__Microsoft_Xna_Framework_Point_TinyLife_Utilities_ColorSettings_System_Int32___MLEM_Textures_TextureRegion_
2023-10-11 16:05:32 +02:00
name: Wallpaper
nameWithType: Wallpaper.Wallpaper
fullName: TinyLife.World.Wallpaper.Wallpaper
nameWithType.vb: Wallpaper.New
fullName.vb: TinyLife.World.Wallpaper.New
name.vb: New
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.WallMode
commentId: T:TinyLife.World.WallMode
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.WallMode.html
2021-08-04 06:51:12 +02:00
name: WallMode
nameWithType: WallMode
fullName: TinyLife.World.WallMode
2023-11-05 20:57:09 +01:00
- uid: TinyLife.Objects.WallLike.Positions
commentId: F:TinyLife.Objects.WallLike.Positions
parent: TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Positions
2023-11-05 20:57:09 +01:00
name: Positions
nameWithType: WallLike.Positions
fullName: TinyLife.Objects.WallLike.Positions
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.Draw*
commentId: Overload:TinyLife.World.Wallpaper.Draw
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_TinyLife_World_Map_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_System_Int32_Microsoft_Xna_Framework_Vector2_TinyLife_World_WallMode_System_Boolean_System_Boolean_System_Single_System_Boolean_System_Single_System_Nullable_Microsoft_Xna_Framework_Color__
2021-08-04 06:51:12 +02:00
name: Draw
nameWithType: Wallpaper.Draw
fullName: TinyLife.World.Wallpaper.Draw
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal: true
name: GameTime
nameWithType: GameTime
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.GameTime
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
commentId: T:Microsoft.Xna.Framework.Graphics.SpriteBatch
parent: Microsoft.Xna.Framework.Graphics
2021-08-04 06:51:12 +02:00
isExternal: true
name: SpriteBatch
nameWithType: SpriteBatch
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch
2023-11-04 19:27:38 +01:00
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Map.html
2023-11-04 19:27:38 +01:00
name: Map
nameWithType: Map
fullName: TinyLife.World.Map
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Vector2
commentId: T:Microsoft.Xna.Framework.Vector2
parent: Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal: true
name: Vector2
nameWithType: Vector2
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.Vector2
2021-08-04 06:51:12 +02:00
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
2021-08-04 06:51:12 +02:00
- 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}
2021-08-04 06:51:12 +02:00
parent: System
definition: System.Nullable`1
2023-03-30 18:07:55 +02:00
name: Color?
nameWithType: Color?
fullName: Microsoft.Xna.Framework.Color?
2021-08-04 06:51:12 +02:00
spec.csharp:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name: Color
isExternal: true
2023-03-30 18:07:55 +02:00
- name: '?'
2021-08-04 06:51:12 +02:00
spec.vb:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name: Color
isExternal: true
2023-03-30 18:07:55 +02:00
- name: '?'
2023-11-05 20:57:09 +01:00
- uid: TinyLife.Objects.WallLike
commentId: T:TinyLife.Objects.WallLike
parent: TinyLife.Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.WallLike.html
2023-11-05 20:57:09 +01:00
name: WallLike
nameWithType: WallLike
fullName: TinyLife.Objects.WallLike
2022-09-05 14:19:42 +02:00
- 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
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.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
2021-08-04 06:51:12 +02: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
2021-08-04 06:51:12 +02: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
2021-08-04 06:51:12 +02: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: " "
2021-08-04 06:51:12 +02:00
- name: T
- name: )
2023-11-05 20:57:09 +01:00
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-11-05 20:57:09 +01:00
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-11-05 20:57:09 +01:00
- name: .
- uid: TinyLife.Objects
name: Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.html
2023-11-05 20:57:09 +01:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-11-05 20:57:09 +01:00
- name: .
- uid: TinyLife.Objects
name: Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.html
2021-08-04 06:51:12 +02:00
- uid: MLEM.Ui.Elements.Element
commentId: T:MLEM.Ui.Elements.Element
parent: MLEM.Ui.Elements
isExternal: true
name: Element
nameWithType: Element
fullName: MLEM.Ui.Elements.Element
- uid: TinyLife.World.Wallpaper.DrawUi*
commentId: Overload:TinyLife.World.Wallpaper.DrawUi
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_DrawUi_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_GameTime_TinyLife_World_Map_System_Single_
2021-08-04 06:51:12 +02:00
name: DrawUi
nameWithType: Wallpaper.DrawUi
fullName: TinyLife.World.Wallpaper.DrawUi
- 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
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.GetPrice*
commentId: Overload:TinyLife.World.Wallpaper.GetPrice
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_GetPrice
2021-08-04 06:51:12 +02:00
name: GetPrice
nameWithType: Wallpaper.GetPrice
fullName: TinyLife.World.Wallpaper.GetPrice
2022-01-01 17:06:03 +01:00
- uid: System.Type
commentId: T:System.Type
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.type
2022-01-01 17:06:03 +01:00
name: Type
nameWithType: Type
fullName: System.Type
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Wallpaper.Register*
commentId: Overload:TinyLife.World.Wallpaper.Register
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html#TinyLife_World_Wallpaper_Register_System_String_System_Int32_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion__Microsoft_Xna_Framework_Point_TinyLife_Utilities_ColorScheme_MLEM_Textures_TextureRegion_System_Nullable_System_Int32__System_Type_
2021-08-04 06:51:12 +02:00
name: Register
nameWithType: Wallpaper.Register
fullName: TinyLife.World.Wallpaper.Register
2024-03-09 19:49:55 +01:00
- uid: TinyLife.Utilities.ColorScheme
commentId: T:TinyLife.Utilities.ColorScheme
parent: TinyLife.Utilities
href: TinyLife.Utilities.ColorScheme.html
name: ColorScheme
nameWithType: ColorScheme
fullName: TinyLife.Utilities.ColorScheme
2022-09-05 14:19:42 +02:00
- uid: System.Nullable{System.Int32}
commentId: T:System.Nullable{System.Int32}
parent: System
definition: System.Nullable`1
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int?
nameWithType: int?
fullName: int?
nameWithType.vb: Integer?
fullName.vb: Integer?
name.vb: Integer?
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: int
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
2022-09-05 14:19:42 +02:00
spec.vb:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: Integer
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
2023-05-26 15:16:22 +02:00
- uid: TinyLife.World.Wallpaper[]
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-05-26 15:16:22 +02:00
name: Wallpaper[]
nameWithType: Wallpaper[]
fullName: TinyLife.World.Wallpaper[]
nameWithType.vb: Wallpaper()
fullName.vb: TinyLife.World.Wallpaper()
name.vb: Wallpaper()
spec.csharp:
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-05-26 15:16:22 +02:00
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.World.Wallpaper
name: Wallpaper
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Wallpaper.html
2023-05-26 15:16:22 +02:00
- name: (
- name: )
2024-03-09 19:49:55 +01:00
- uid: TinyLife.Utilities.ColorScheme[]
isExternal: true
href: TinyLife.Utilities.ColorScheme.html
name: ColorScheme[]
nameWithType: ColorScheme[]
fullName: TinyLife.Utilities.ColorScheme[]
nameWithType.vb: ColorScheme()
fullName.vb: TinyLife.Utilities.ColorScheme()
name.vb: ColorScheme()
spec.csharp:
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: (
- name: )