### YamlMime:ManagedReference
items:
- uid: TinyLife.Objects.WornClothes
commentId: T:TinyLife.Objects.WornClothes
id: WornClothes
parent: TinyLife.Objects
children:
- TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
- TinyLife.Objects.WornClothes.Colors
- TinyLife.Objects.WornClothes.CustomPrice
- TinyLife.Objects.WornClothes.FromStorage
- TinyLife.Objects.WornClothes.GetColor(System.Int32)
- TinyLife.Objects.WornClothes.GetPrice
- TinyLife.Objects.WornClothes.Type
- TinyLife.Objects.WornClothes.Validate
langs:
- csharp
- vb
name: WornClothes
nameWithType: WornClothes
fullName: TinyLife.Objects.WornClothes
type: Class
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WornClothes
path: ../TinyLife/Objects/Clothes.cs
startLine: 369
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nWornClothes is a wrapper around that additionally stores the colors and whether or not the clothes are from the or not\n"
example: []
syntax:
content: >-
[DataContract]
public class WornClothes : IPricedObject
content.vb: >-
Public Class WornClothes
Implements IPricedObject
inheritance:
- System.Object
implements:
- TinyLife.World.IPricedObject
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.Objects.WornClothes.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: TinyLife.Objects.WornClothes.Type
commentId: F:TinyLife.Objects.WornClothes.Type
id: Type
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: Type
nameWithType: WornClothes.Type
fullName: TinyLife.Objects.WornClothes.Type
type: Field
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type
path: ../TinyLife/Objects/Clothes.cs
startLine: 376
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nThe type that these worn clothes reference\n"
example: []
syntax:
content: >-
[DataMember]
public readonly Clothes Type
return:
type: TinyLife.Objects.Clothes
content.vb: >-
Public ReadOnly Type As Clothes
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Objects.WornClothes.Colors
commentId: F:TinyLife.Objects.WornClothes.Colors
id: Colors
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: Colors
nameWithType: WornClothes.Colors
fullName: TinyLife.Objects.WornClothes.Colors
type: Field
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Colors
path: ../TinyLife/Objects/Clothes.cs
startLine: 383
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nThe colors of this instance.\nEach index references the color of the underlying 's .\nThe actual color can be retrieved easily using .\n"
example: []
syntax:
content: >-
[DataMember]
public int[] Colors
return:
type: System.Int32[]
content.vb: >-
Public Colors As Integer()
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Objects.WornClothes.FromStorage
commentId: F:TinyLife.Objects.WornClothes.FromStorage
id: FromStorage
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: FromStorage
nameWithType: WornClothes.FromStorage
fullName: TinyLife.Objects.WornClothes.FromStorage
type: Field
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FromStorage
path: ../TinyLife/Objects/Clothes.cs
startLine: 388
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nThis value is true if this clothes item is from the \n"
example: []
syntax:
content: >-
[DataMember]
public bool FromStorage
return:
type: System.Boolean
content.vb: >-
Public FromStorage As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Objects.WornClothes.CustomPrice
commentId: F:TinyLife.Objects.WornClothes.CustomPrice
id: CustomPrice
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: CustomPrice
nameWithType: WornClothes.CustomPrice
fullName: TinyLife.Objects.WornClothes.CustomPrice
type: Field
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CustomPrice
path: ../TinyLife/Objects/Clothes.cs
startLine: 394
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nAn optional custom price that this clothing item has over its regular price ().\nIf this field has a value, the regularly calculated price from will be ignored and this value will be used as the object's price instead.\n"
example: []
syntax:
content: >-
[DataMember(EmitDefaultValue = false)]
public float? CustomPrice
return:
type: System.Nullable{System.Single}
content.vb: >-
Public CustomPrice As Single?
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
namedArguments:
- name: EmitDefaultValue
type: System.Boolean
value: false
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
commentId: M:TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
id: '#ctor(TinyLife.Objects.Clothes,System.Int32[])'
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: WornClothes(Clothes, Int32[])
nameWithType: WornClothes.WornClothes(Clothes, Int32[])
fullName: TinyLife.Objects.WornClothes.WornClothes(TinyLife.Objects.Clothes, System.Int32[])
type: Constructor
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Objects/Clothes.cs
startLine: 401
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nCreates a new worn instance with the given settings\n"
example: []
syntax:
content: public WornClothes(Clothes type, int[] colors)
parameters:
- id: type
type: TinyLife.Objects.Clothes
description: The type
- id: colors
type: System.Int32[]
description: The indices of the colors that this instance should have
content.vb: Public Sub New(type As Clothes, colors As Integer())
overload: TinyLife.Objects.WornClothes.#ctor*
nameWithType.vb: WornClothes.WornClothes(Clothes, Int32())
modifiers.csharp:
- public
modifiers.vb:
- Public
fullName.vb: TinyLife.Objects.WornClothes.WornClothes(TinyLife.Objects.Clothes, System.Int32())
name.vb: WornClothes(Clothes, Int32())
- uid: TinyLife.Objects.WornClothes.GetColor(System.Int32)
commentId: M:TinyLife.Objects.WornClothes.GetColor(System.Int32)
id: GetColor(System.Int32)
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: GetColor(Int32)
nameWithType: WornClothes.GetColor(Int32)
fullName: TinyLife.Objects.WornClothes.GetColor(System.Int32)
type: Method
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetColor
path: ../TinyLife/Objects/Clothes.cs
startLine: 411
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nReturns the of the given layer\n"
example: []
syntax:
content: public Color GetColor(int layer)
parameters:
- id: layer
type: System.Int32
description: The layer to query the color for
return:
type: Microsoft.Xna.Framework.Color
description: The color that the layer has, based on
content.vb: Public Function GetColor(layer As Integer) As Color
overload: TinyLife.Objects.WornClothes.GetColor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Objects.WornClothes.Validate
commentId: M:TinyLife.Objects.WornClothes.Validate
id: Validate
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: Validate()
nameWithType: WornClothes.Validate()
fullName: TinyLife.Objects.WornClothes.Validate()
type: Method
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/Objects/Clothes.cs
startLine: 419
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nThis method is called when this object is loaded from disk.\n"
example: []
syntax:
content: public bool Validate()
return:
type: System.Boolean
description: false if the object is not valid, true otherwise
content.vb: Public Function Validate As Boolean
overload: TinyLife.Objects.WornClothes.Validate*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Objects.WornClothes.GetPrice
commentId: M:TinyLife.Objects.WornClothes.GetPrice
id: GetPrice
parent: TinyLife.Objects.WornClothes
langs:
- csharp
- vb
name: GetPrice()
nameWithType: WornClothes.GetPrice()
fullName: TinyLife.Objects.WornClothes.GetPrice()
type: Method
source:
remote:
path: TinyLife/Objects/Clothes.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPrice
path: ../TinyLife/Objects/Clothes.cs
startLine: 432
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the , the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the or similar.\n"
example: []
syntax:
content: public float GetPrice()
return:
type: System.Single
description: The object's price
content.vb: Public Function GetPrice As Single
overload: TinyLife.Objects.WornClothes.GetPrice*
implements:
- TinyLife.World.IPricedObject.GetPrice
modifiers.csharp:
- public
modifiers.vb:
- Public
references:
- uid: TinyLife.Objects.Clothes
commentId: T:TinyLife.Objects.Clothes
parent: TinyLife.Objects
name: Clothes
nameWithType: Clothes
fullName: TinyLife.Objects.Clothes
- uid: TinyLife.World.Household.ClothesStorage
commentId: F:TinyLife.World.Household.ClothesStorage
isExternal: true
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: TinyLife.World.IPricedObject
commentId: T:TinyLife.World.IPricedObject
parent: TinyLife.World
name: IPricedObject
nameWithType: IPricedObject
fullName: TinyLife.World.IPricedObject
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Objects.WornClothes.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy()
nameWithType: Extensions.JsonCopy()
fullName: TinyLife.Utilities.Extensions.JsonCopy()
nameWithType.vb: Extensions.JsonCopy(Of WornClothes)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.WornClothes)()
name.vb: JsonCopy(Of WornClothes)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy
nameWithType: Extensions.JsonCopy
fullName: TinyLife.Utilities.Extensions.JsonCopy
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of WornClothes)
nameWithType: Extensions.JsonCopy(Of WornClothes)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.WornClothes)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: TinyLife.World
commentId: N:TinyLife.World
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(T)
nameWithType: Extensions.JsonCopy(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
nameWithType: Extensions.JsonCopy
fullName: TinyLife.Utilities.Extensions.JsonCopy
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
- uid: TinyLife.Objects.WornClothes.Type
commentId: F:TinyLife.Objects.WornClothes.Type
isExternal: true
- uid: TinyLife.Objects.Clothes.Colors
commentId: F:TinyLife.Objects.Clothes.Colors
isExternal: true
- uid: TinyLife.Objects.WornClothes.GetColor(System.Int32)
commentId: M:TinyLife.Objects.WornClothes.GetColor(System.Int32)
isExternal: true
- uid: System.Int32[]
isExternal: true
name: Int32[]
nameWithType: Int32[]
fullName: System.Int32[]
nameWithType.vb: Int32()
fullName.vb: System.Int32()
name.vb: Int32()
spec.csharp:
- uid: System.Int32
name: Int32
nameWithType: Int32
fullName: System.Int32
isExternal: true
- name: '[]'
nameWithType: '[]'
fullName: '[]'
spec.vb:
- uid: System.Int32
name: Int32
nameWithType: Int32
fullName: System.Int32
isExternal: true
- name: ()
nameWithType: ()
fullName: ()
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
name: Boolean
nameWithType: Boolean
fullName: System.Boolean
- uid: TinyLife.Objects.WornClothes.GetPrice
commentId: M:TinyLife.Objects.WornClothes.GetPrice
isExternal: true
- uid: System.Nullable{System.Single}
commentId: T:System.Nullable{System.Single}
parent: System
definition: System.Nullable`1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
nameWithType.vb: Nullable(Of Single)
fullName.vb: System.Nullable(Of System.Single)
name.vb: Nullable(Of Single)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
isExternal: true
- name: <
nameWithType: <
fullName: <
- uid: System.Single
name: Single
nameWithType: Single
fullName: System.Single
isExternal: true
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- uid: System.Single
name: Single
nameWithType: Single
fullName: System.Single
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
nameWithType.vb: Nullable(Of T)
fullName.vb: System.Nullable(Of T)
name.vb: Nullable(Of T)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
isExternal: true
- name: <
nameWithType: <
fullName: <
- name: T
nameWithType: T
fullName: T
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Objects.WornClothes.#ctor*
commentId: Overload:TinyLife.Objects.WornClothes.#ctor
name: WornClothes
nameWithType: WornClothes.WornClothes
fullName: TinyLife.Objects.WornClothes.WornClothes
- uid: Microsoft.Xna.Framework.Color
commentId: T:Microsoft.Xna.Framework.Color
parent: Microsoft.Xna.Framework
isExternal: true
name: Color
nameWithType: Color
fullName: Microsoft.Xna.Framework.Color
- uid: TinyLife.Objects.WornClothes.Colors
commentId: F:TinyLife.Objects.WornClothes.Colors
isExternal: true
- uid: TinyLife.Objects.WornClothes.GetColor*
commentId: Overload:TinyLife.Objects.WornClothes.GetColor
name: GetColor
nameWithType: WornClothes.GetColor
fullName: TinyLife.Objects.WornClothes.GetColor
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
name: Int32
nameWithType: Int32
fullName: System.Int32
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
- uid: TinyLife.Objects.WornClothes.Validate*
commentId: Overload:TinyLife.Objects.WornClothes.Validate
name: Validate
nameWithType: WornClothes.Validate
fullName: TinyLife.Objects.WornClothes.Validate
- uid: TinyLife.Objects.WornClothes.GetPrice*
commentId: Overload:TinyLife.Objects.WornClothes.GetPrice
name: GetPrice
nameWithType: WornClothes.GetPrice
fullName: TinyLife.Objects.WornClothes.GetPrice
- uid: TinyLife.World.IPricedObject.GetPrice
commentId: M:TinyLife.World.IPricedObject.GetPrice
parent: TinyLife.World.IPricedObject
name: GetPrice()
nameWithType: IPricedObject.GetPrice()
fullName: TinyLife.World.IPricedObject.GetPrice()
spec.csharp:
- uid: TinyLife.World.IPricedObject.GetPrice
name: GetPrice
nameWithType: IPricedObject.GetPrice
fullName: TinyLife.World.IPricedObject.GetPrice
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.World.IPricedObject.GetPrice
name: GetPrice
nameWithType: IPricedObject.GetPrice
fullName: TinyLife.World.IPricedObject.GetPrice
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
name: Single
nameWithType: Single
fullName: System.Single