TinyLifeWeb/docs/api/TinyLife.Skills.PaintingType.yml

921 lines
31 KiB
YAML
Raw Permalink Normal View History

2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Skills.PaintingType
commentId: T:TinyLife.Skills.PaintingType
id: PaintingType
parent: TinyLife.Skills
children:
2023-11-18 12:57:05 +01:00
- TinyLife.Skills.PaintingType.#ctor(System.String,System.Int32,System.Single)
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.PaintingType.BaseMarkup
2023-11-18 12:57:05 +01:00
- TinyLife.Skills.PaintingType.MinLevel
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.PaintingType.Name
- TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
- TinyLife.Skills.PaintingType.Texture
- TinyLife.Skills.PaintingType.Types
langs:
- csharp
- vb
name: PaintingType
nameWithType: PaintingType
fullName: TinyLife.Skills.PaintingType
type: Class
source:
remote:
path: TinyLife/Skills/PaintingType.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: PaintingType
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-01-16 12:24:01 +01:00
startLine: 14
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: >-
This class represents a type of <xref href="TinyLife.Objects.Painting" data-throw-if-not-resolved="false"></xref> that can be created using the <xref href="TinyLife.Skills.SkillType.Painting" data-throw-if-not-resolved="false"></xref>.
Painting types are registered using <xref href="TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: >-
2023-03-30 18:07:55 +02:00
[JsonConverter(typeof(StaticJsonConverter<PaintingType>), new object[] { typeof(PaintingType), "PrivateTypes" })]
2021-08-04 06:51:12 +02:00
public class PaintingType
content.vb: >-
2023-03-30 18:07:55 +02:00
<JsonConverter(GetType(StaticJsonConverter(Of PaintingType)), New Object() { GetType(PaintingType), "PrivateTypes" })>
2021-08-04 06:51:12 +02:00
Public Class PaintingType
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.Skills.PaintingType.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Skills.PaintingType.Types
commentId: F:TinyLife.Skills.PaintingType.Types
id: Types
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: Types
nameWithType: PaintingType.Types
fullName: TinyLife.Skills.PaintingType.Types
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.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: Types
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-01-16 12:24:01 +01:00
startLine: 21
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: All registered <xref href="TinyLife.Skills.PaintingType" data-throw-if-not-resolved="false"></xref> instances in the game and in active mods
2021-08-04 06:51:12 +02:00
example: []
syntax:
2022-05-24 13:36:05 +02:00
content: public static readonly ReadOnlyDictionary<string, PaintingType> Types
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.Skills.PaintingType}
content.vb: Public Shared ReadOnly Types As ReadOnlyDictionary(Of String, PaintingType)
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Name
commentId: F:TinyLife.Skills.PaintingType.Name
id: Name
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: Name
nameWithType: PaintingType.Name
fullName: TinyLife.Skills.PaintingType.Name
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.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/Skills/PaintingType.cs
2023-01-16 12:24:01 +01:00
startLine: 40
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: The name of this painting type
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
2023-11-18 12:57:05 +01:00
- uid: TinyLife.Skills.PaintingType.MinLevel
commentId: F:TinyLife.Skills.PaintingType.MinLevel
id: MinLevel
2021-08-04 06:51:12 +02:00
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
2023-11-18 12:57:05 +01:00
name: MinLevel
nameWithType: PaintingType.MinLevel
fullName: TinyLife.Skills.PaintingType.MinLevel
2021-08-04 06:51:12 +02:00
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.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
2023-11-18 12:57:05 +01:00
id: MinLevel
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-12-06 13:25:52 +01:00
startLine: 44
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: The minimum level that this painting is able to be painted with.
2023-12-06 13:25:52 +01:00
example: []
2021-08-04 06:51:12 +02:00
syntax:
2023-11-18 12:57:05 +01:00
content: public readonly int MinLevel
2021-08-04 06:51:12 +02:00
return:
2023-11-18 12:57:05 +01:00
type: System.Int32
content.vb: Public ReadOnly MinLevel As Integer
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Texture
commentId: F:TinyLife.Skills.PaintingType.Texture
id: Texture
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: Texture
nameWithType: PaintingType.Texture
fullName: TinyLife.Skills.PaintingType.Texture
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.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: Texture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-12-06 13:25:52 +01:00
startLine: 50
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: >-
The texture that this painting uses.
The texture is loaded from the <xref href="TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)" data-throw-if-not-resolved="false"></xref> as "Painting<xref href="TinyLife.Skills.PaintingType.Name" data-throw-if-not-resolved="false"></xref>"
Note that this texture is just an overlay; the frame and white background are automatically drawn.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly TextureRegion Texture
return:
type: MLEM.Textures.TextureRegion
content.vb: Public ReadOnly Texture As TextureRegion
- uid: TinyLife.Skills.PaintingType.BaseMarkup
commentId: F:TinyLife.Skills.PaintingType.BaseMarkup
id: BaseMarkup
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: BaseMarkup
nameWithType: PaintingType.BaseMarkup
fullName: TinyLife.Skills.PaintingType.BaseMarkup
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.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: BaseMarkup
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-12-06 13:25:52 +01:00
startLine: 55
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: >-
The multiplier with which the created <xref href="TinyLife.Objects.Painting" data-throw-if-not-resolved="false"></xref>'s price will be marked up.
Before this multiplier is applied, the level and quality modifiers are also applied.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public readonly float BaseMarkup
return:
type: System.Single
content.vb: Public ReadOnly BaseMarkup As Single
2023-11-18 12:57:05 +01:00
- uid: TinyLife.Skills.PaintingType.#ctor(System.String,System.Int32,System.Single)
commentId: M:TinyLife.Skills.PaintingType.#ctor(System.String,System.Int32,System.Single)
id: '#ctor(System.String,System.Int32,System.Single)'
2021-08-04 06:51:12 +02:00
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
2023-11-18 12:57:05 +01:00
name: PaintingType(string, int, float)
nameWithType: PaintingType.PaintingType(string, int, float)
fullName: TinyLife.Skills.PaintingType.PaintingType(string, int, float)
2021-08-04 06:51:12 +02:00
type: Constructor
source:
remote:
path: TinyLife/Skills/PaintingType.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: .ctor
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Skills/PaintingType.cs
2023-12-06 13:25:52 +01:00
startLine: 63
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: Creates a new painting type with the given settings
2021-08-04 06:51:12 +02:00
example: []
syntax:
2023-11-18 12:57:05 +01:00
content: public PaintingType(string name, int minLevel, float baseMarkup)
2021-08-04 06:51:12 +02:00
parameters:
- id: name
type: System.String
description: The name of this painting type
2023-11-18 12:57:05 +01:00
- id: minLevel
type: System.Int32
2023-12-06 13:25:52 +01:00
description: The minimum level that this painting is able to be painted with.
2021-08-04 06:51:12 +02:00
- id: baseMarkup
type: System.Single
2024-01-07 16:53:47 +01:00
description: The multiplier with which the created painting's price will be marked up
2023-11-18 12:57:05 +01:00
content.vb: Public Sub New(name As String, minLevel As Integer, baseMarkup As Single)
2021-08-04 06:51:12 +02:00
overload: TinyLife.Skills.PaintingType.#ctor*
2023-11-18 12:57:05 +01:00
nameWithType.vb: PaintingType.New(String, Integer, Single)
fullName.vb: TinyLife.Skills.PaintingType.New(String, Integer, Single)
name.vb: New(String, Integer, Single)
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
commentId: M:TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
id: Register(TinyLife.Skills.PaintingType)
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: Register(PaintingType)
nameWithType: PaintingType.Register(PaintingType)
fullName: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
type: Method
source:
remote:
path: TinyLife/Skills/PaintingType.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/Skills/PaintingType.cs
2023-12-06 13:25:52 +01:00
startLine: 75
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Skills
2024-01-07 16:53:47 +01:00
summary: Registers a painting type with the given settings to the <xref href="TinyLife.Skills.PaintingType.Types" data-throw-if-not-resolved="false"></xref> registry
2021-08-04 06:51:12 +02:00
example: []
syntax:
2023-05-26 15:16:22 +02:00
content: public static PaintingType Register(PaintingType type)
2021-08-04 06:51:12 +02:00
parameters:
- id: type
type: TinyLife.Skills.PaintingType
description: The type to register
2023-05-26 15:16:22 +02:00
return:
type: TinyLife.Skills.PaintingType
2024-01-07 16:53:47 +01:00
description: The passed <code class="paramref">type</code>, for chaining.
2023-05-26 15:16:22 +02:00
content.vb: Public Shared Function Register(type As PaintingType) As PaintingType
2021-08-04 06:51:12 +02:00
overload: TinyLife.Skills.PaintingType.Register*
references:
- uid: TinyLife.Objects.Painting
commentId: T:TinyLife.Objects.Painting
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.Painting.html
2021-08-04 06:51:12 +02:00
name: Painting
nameWithType: Painting
fullName: TinyLife.Objects.Painting
- uid: TinyLife.Skills.SkillType.Painting
commentId: F:TinyLife.Skills.SkillType.Painting
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.SkillType.html#TinyLife_Skills_SkillType_Painting
2023-03-30 18:07:55 +02:00
name: Painting
nameWithType: SkillType.Painting
fullName: TinyLife.Skills.SkillType.Painting
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
commentId: M:TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Register_TinyLife_Skills_PaintingType_
2023-03-30 18:07:55 +02:00
name: Register(PaintingType)
nameWithType: PaintingType.Register(PaintingType)
fullName: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
spec.csharp:
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
name: Register
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Register_TinyLife_Skills_PaintingType_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
2023-03-30 18:07:55 +02:00
- name: )
spec.vb:
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
name: Register
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Register_TinyLife_Skills_PaintingType_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
2023-03-30 18:07:55 +02:00
- name: )
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills
commentId: N:TinyLife.Skills
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2021-08-04 06:51:12 +02:00
name: TinyLife.Skills
nameWithType: TinyLife.Skills
fullName: TinyLife.Skills
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.Skills
name: Skills
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.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.Skills
name: Skills
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.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.Skills.PaintingType.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<PaintingType>(PaintingType)
nameWithType: Extensions.JsonCopy<PaintingType>(PaintingType)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Skills.PaintingType>(TinyLife.Skills.PaintingType)
nameWithType.vb: Extensions.JsonCopy(Of PaintingType)(PaintingType)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Skills.PaintingType)(TinyLife.Skills.PaintingType)
name.vb: JsonCopy(Of PaintingType)(PaintingType)
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.Skills.PaintingType)
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.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.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.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.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.Skills.PaintingType)
name: JsonCopy
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: (
2023-03-30 18:07:55 +02:00
- name: Of
- name: " "
- uid: TinyLife.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
2023-03-30 18:07:55 +02:00
- name: )
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.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.Skills.PaintingType
commentId: T:TinyLife.Skills.PaintingType
parent: TinyLife.Skills
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
2021-08-04 06:51:12 +02:00
name: PaintingType
nameWithType: PaintingType
fullName: TinyLife.Skills.PaintingType
2022-05-24 13:36:05 +02:00
- uid: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.PaintingType}
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.PaintingType}
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, PaintingType>
nameWithType: ReadOnlyDictionary<string, PaintingType>
fullName: System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.Skills.PaintingType>
2022-05-24 13:36:05 +02:00
nameWithType.vb: ReadOnlyDictionary(Of String, PaintingType)
2023-03-30 18:07:55 +02:00
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Skills.PaintingType)
2022-05-24 13:36:05 +02:00
name.vb: ReadOnlyDictionary(Of String, PaintingType)
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.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
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.Skills.PaintingType
name: PaintingType
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html
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: 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
2023-11-18 12:57:05 +01:00
- uid: System.Int32
commentId: T:System.Int32
2023-01-16 12:24:01 +01:00
parent: System
2023-11-18 12:57:05 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
2023-11-18 12:57:05 +01:00
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
2022-03-09 16:13:05 +01:00
- uid: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
commentId: M:TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
2024-01-07 16:53:47 +01:00
href: TinyLife.Mods.Mod.html#TinyLife_Mods_Mod_GetCustomFurnitureTextures_TinyLife_Mods_ModInfo_
2023-03-30 18:07:55 +02:00
name: GetCustomFurnitureTextures(ModInfo)
nameWithType: Mod.GetCustomFurnitureTextures(ModInfo)
fullName: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
spec.csharp:
- uid: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
name: GetCustomFurnitureTextures
2024-01-07 16:53:47 +01:00
href: TinyLife.Mods.Mod.html#TinyLife_Mods_Mod_GetCustomFurnitureTextures_TinyLife_Mods_ModInfo_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.Mods.ModInfo
name: ModInfo
2024-01-07 16:53:47 +01:00
href: TinyLife.Mods.ModInfo.html
2023-03-30 18:07:55 +02:00
- name: )
spec.vb:
- uid: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
name: GetCustomFurnitureTextures
2024-01-07 16:53:47 +01:00
href: TinyLife.Mods.Mod.html#TinyLife_Mods_Mod_GetCustomFurnitureTextures_TinyLife_Mods_ModInfo_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.Mods.ModInfo
name: ModInfo
2024-01-07 16:53:47 +01:00
href: TinyLife.Mods.ModInfo.html
2023-03-30 18:07:55 +02:00
- name: )
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Name
commentId: F:TinyLife.Skills.PaintingType.Name
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Name
2023-03-30 18:07:55 +02:00
name: Name
nameWithType: PaintingType.Name
fullName: TinyLife.Skills.PaintingType.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
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
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.#ctor*
commentId: Overload:TinyLife.Skills.PaintingType.#ctor
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType__ctor_System_String_System_Int32_System_Single_
2021-08-04 06:51:12 +02:00
name: PaintingType
nameWithType: PaintingType.PaintingType
fullName: TinyLife.Skills.PaintingType.PaintingType
2023-03-30 18:07:55 +02:00
nameWithType.vb: PaintingType.New
fullName.vb: TinyLife.Skills.PaintingType.New
name.vb: New
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Types
commentId: F:TinyLife.Skills.PaintingType.Types
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Types
2023-03-30 18:07:55 +02:00
name: Types
nameWithType: PaintingType.Types
fullName: TinyLife.Skills.PaintingType.Types
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Skills.PaintingType.Register*
commentId: Overload:TinyLife.Skills.PaintingType.Register
2024-01-07 16:53:47 +01:00
href: TinyLife.Skills.PaintingType.html#TinyLife_Skills_PaintingType_Register_TinyLife_Skills_PaintingType_
2021-08-04 06:51:12 +02:00
name: Register
nameWithType: PaintingType.Register
fullName: TinyLife.Skills.PaintingType.Register