TinyLifeWeb/docs/api/TinyLife.Skills.PaintingType.yml
2023-03-30 18:07:55 +02:00

932 lines
31 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.Skills.PaintingType
commentId: T:TinyLife.Skills.PaintingType
id: PaintingType
parent: TinyLife.Skills
children:
- TinyLife.Skills.PaintingType.#ctor(System.String,System.ValueTuple{System.Int32,System.Int32},System.Single)
- TinyLife.Skills.PaintingType.BaseMarkup
- TinyLife.Skills.PaintingType.LevelRange
- 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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PaintingType
path: ../TinyLife/Skills/PaintingType.cs
startLine: 14
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThis 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>.\nPainting types are registered using <xref href=\"TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[JsonConverter(typeof(StaticJsonConverter<PaintingType>), new object[] { typeof(PaintingType), "PrivateTypes" })]
public class PaintingType
content.vb: >-
<JsonConverter(GetType(StaticJsonConverter(Of PaintingType)), New Object() { GetType(PaintingType), "PrivateTypes" })>
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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Types
path: ../TinyLife/Skills/PaintingType.cs
startLine: 21
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nAll registered <xref href=\"TinyLife.Skills.PaintingType\" data-throw-if-not-resolved=\"false\"></xref> instances in the game and in active mods\n"
example: []
syntax:
content: public static readonly ReadOnlyDictionary<string, PaintingType> Types
return:
type: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.PaintingType}
content.vb: Public Shared ReadOnly Types As ReadOnlyDictionary(Of String, PaintingType)
- 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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name
path: ../TinyLife/Skills/PaintingType.cs
startLine: 40
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe name of this painting type\n"
example: []
syntax:
content: public readonly string Name
return:
type: System.String
content.vb: Public ReadOnly Name As String
- uid: TinyLife.Skills.PaintingType.LevelRange
commentId: F:TinyLife.Skills.PaintingType.LevelRange
id: LevelRange
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: LevelRange
nameWithType: PaintingType.LevelRange
fullName: TinyLife.Skills.PaintingType.LevelRange
type: Field
source:
remote:
path: TinyLife/Skills/PaintingType.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LevelRange
path: ../TinyLife/Skills/PaintingType.cs
startLine: 44
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe range of levels (Min and Max inclusive) of the <xref href=\"TinyLife.Skills.SkillType.Painting\" data-throw-if-not-resolved=\"false\"></xref> skill that allows creating this painting\n"
example: []
syntax:
content: public readonly (int Min, int Max) LevelRange
return:
type: System.ValueTuple{System.Int32,System.Int32}
content.vb: Public ReadOnly LevelRange As (Min As Integer, Max As Integer)
- 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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Texture
path: ../TinyLife/Skills/PaintingType.cs
startLine: 50
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe texture that this painting uses.\nThe texture is loaded from the <xref href=\"TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)\" data-throw-if-not-resolved=\"false\"></xref> as &quot;Painting<xref href=\"TinyLife.Skills.PaintingType.Name\" data-throw-if-not-resolved=\"false\"></xref>&quot;\nNote that this texture is just an overlay; the frame and white background are automatically drawn.\n"
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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BaseMarkup
path: ../TinyLife/Skills/PaintingType.cs
startLine: 55
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe multiplier with which the created <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>&apos;s price will be marked up.\nBefore this multiplier is applied, the level and quality modifiers are also applied.\n"
example: []
syntax:
content: public readonly float BaseMarkup
return:
type: System.Single
content.vb: Public ReadOnly BaseMarkup As Single
- uid: TinyLife.Skills.PaintingType.#ctor(System.String,System.ValueTuple{System.Int32,System.Int32},System.Single)
commentId: M:TinyLife.Skills.PaintingType.#ctor(System.String,System.ValueTuple{System.Int32,System.Int32},System.Single)
id: '#ctor(System.String,System.ValueTuple{System.Int32,System.Int32},System.Single)'
parent: TinyLife.Skills.PaintingType
langs:
- csharp
- vb
name: PaintingType(string, (int Min, int Max), float)
nameWithType: PaintingType.PaintingType(string, (int Min, int Max), float)
fullName: TinyLife.Skills.PaintingType.PaintingType(string, (int Min, int Max), float)
type: Constructor
source:
remote:
path: TinyLife/Skills/PaintingType.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Skills/PaintingType.cs
startLine: 63
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nCreates a new painting type with the given settings\n"
example: []
syntax:
content: public PaintingType(string name, (int Min, int Max) levelRange, float baseMarkup)
parameters:
- id: name
type: System.String
description: The name of this painting type
- id: levelRange
type: System.ValueTuple{System.Int32,System.Int32}
description: The range of levels of the painting skill that should allow for creation of this painting
- id: baseMarkup
type: System.Single
description: The multiplier with which the created painting&apos;s price will be marked up
content.vb: Public Sub New(name As String, levelRange As (Min As Integer, Max As Integer), baseMarkup As Single)
overload: TinyLife.Skills.PaintingType.#ctor*
nameWithType.vb: PaintingType.New(String, (Min As Integer, Max As Integer), Single)
fullName.vb: TinyLife.Skills.PaintingType.New(String, (Min As Integer, Max As Integer), Single)
name.vb: New(String, (Min As Integer, Max As Integer), Single)
- 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
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register
path: ../TinyLife/Skills/PaintingType.cs
startLine: 74
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nRegisters a painting type with the given settings to the <xref href=\"TinyLife.Skills.PaintingType.Types\" data-throw-if-not-resolved=\"false\"></xref> registry\n"
example: []
syntax:
content: public static void Register(PaintingType type)
parameters:
- id: type
type: TinyLife.Skills.PaintingType
description: The type to register
content.vb: Public Shared Sub Register(type As PaintingType)
overload: TinyLife.Skills.PaintingType.Register*
references:
- uid: TinyLife.Objects.Painting
commentId: T:TinyLife.Objects.Painting
name: Painting
nameWithType: Painting
fullName: TinyLife.Objects.Painting
- uid: TinyLife.Skills.SkillType.Painting
commentId: F:TinyLife.Skills.SkillType.Painting
name: Painting
nameWithType: SkillType.Painting
fullName: TinyLife.Skills.SkillType.Painting
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
commentId: M:TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
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
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
spec.vb:
- uid: TinyLife.Skills.PaintingType.Register(TinyLife.Skills.PaintingType)
name: Register
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
- uid: TinyLife.Skills
commentId: N:TinyLife.Skills
name: TinyLife.Skills
nameWithType: TinyLife.Skills
fullName: TinyLife.Skills
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Skills
name: Skills
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Skills
name: Skills
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- 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)
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)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Skills.PaintingType)
name: JsonCopy
- name: <
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: '>'
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Skills.PaintingType)
name: JsonCopy
- name: (
- name: Of
- name: " "
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
- name: (
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
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)
name: JsonCopy
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
- uid: TinyLife.Skills.PaintingType
commentId: T:TinyLife.Skills.PaintingType
parent: TinyLife.Skills
name: PaintingType
nameWithType: PaintingType
fullName: TinyLife.Skills.PaintingType
- 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
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>
nameWithType.vb: ReadOnlyDictionary(Of String, PaintingType)
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Skills.PaintingType)
name.vb: ReadOnlyDictionary(Of String, PaintingType)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Skills.PaintingType
name: PaintingType
- name: )
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
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)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: <
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: )
- uid: System.Collections.ObjectModel
commentId: N:System.Collections.ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.ObjectModel
nameWithType: System.Collections.ObjectModel
fullName: System.Collections.ObjectModel
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
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: System.ValueTuple{System.Int32,System.Int32}
commentId: T:System.ValueTuple{System.Int32,System.Int32}
parent: System
definition: System.ValueTuple`2
href: https://learn.microsoft.com/dotnet/api/system.int32
name: (int Start, int End)
nameWithType: (int Start, int End)
fullName: (int Start, int End)
nameWithType.vb: (Start As Integer, End As Integer)
fullName.vb: (Start As Integer, End As Integer)
name.vb: (Start As Integer, End As Integer)
spec.csharp:
- name: (
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: " "
- uid: System.ValueTuple{System.Int32,System.Int32}.Start
name: Start
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.start
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: " "
- uid: System.ValueTuple{System.Int32,System.Int32}.End
name: End
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.end
- name: )
spec.vb:
- name: (
- uid: System.ValueTuple{System.Int32,System.Int32}.Start
name: Start
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.start
- name: " "
- name: As
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.ValueTuple{System.Int32,System.Int32}.End
name: End
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.end
- name: " "
- name: As
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- uid: System.ValueTuple`2
commentId: T:System.ValueTuple`2
name: (T1, T2)
nameWithType: (T1, T2)
fullName: (T1, T2)
spec.csharp:
- name: (
- name: T1
- name: ','
- name: " "
- name: T2
- name: )
spec.vb:
- name: (
- name: T1
- name: ','
- name: " "
- name: T2
- name: )
- uid: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
commentId: M:TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
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
- name: (
- uid: TinyLife.Mods.ModInfo
name: ModInfo
- name: )
spec.vb:
- uid: TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
name: GetCustomFurnitureTextures
- name: (
- uid: TinyLife.Mods.ModInfo
name: ModInfo
- name: )
- uid: TinyLife.Skills.PaintingType.Name
commentId: F:TinyLife.Skills.PaintingType.Name
name: Name
nameWithType: PaintingType.Name
fullName: TinyLife.Skills.PaintingType.Name
- 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
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
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
- uid: TinyLife.Skills.PaintingType.#ctor*
commentId: Overload:TinyLife.Skills.PaintingType.#ctor
name: PaintingType
nameWithType: PaintingType.PaintingType
fullName: TinyLife.Skills.PaintingType.PaintingType
nameWithType.vb: PaintingType.New
fullName.vb: TinyLife.Skills.PaintingType.New
name.vb: New
- uid: TinyLife.Skills.PaintingType.Types
commentId: F:TinyLife.Skills.PaintingType.Types
name: Types
nameWithType: PaintingType.Types
fullName: TinyLife.Skills.PaintingType.Types
- uid: TinyLife.Skills.PaintingType.Register*
commentId: Overload:TinyLife.Skills.PaintingType.Register
name: Register
nameWithType: PaintingType.Register
fullName: TinyLife.Skills.PaintingType.Register