mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-05 12:29:09 +01:00
1246 lines
39 KiB
YAML
1246 lines
39 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.Objects.AbstractSpot
|
|
commentId: T:TinyLife.Objects.AbstractSpot
|
|
id: AbstractSpot
|
|
parent: TinyLife.Objects
|
|
children:
|
|
- TinyLife.Objects.AbstractSpot.#ctor(Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2[])
|
|
- TinyLife.Objects.AbstractSpot.DoGroupsOverlap(TinyLife.Objects.AbstractSpot)
|
|
- TinyLife.Objects.AbstractSpot.DrawLayer
|
|
- TinyLife.Objects.AbstractSpot.GetLocation(TinyLife.Objects.Furniture,System.Boolean)
|
|
- TinyLife.Objects.AbstractSpot.GetValidDirections(MLEM.Misc.Direction2)
|
|
- TinyLife.Objects.AbstractSpot.Group
|
|
- TinyLife.Objects.AbstractSpot.Offset
|
|
- TinyLife.Objects.AbstractSpot.ValidDirections
|
|
- TinyLife.Objects.AbstractSpot.VisualOffset
|
|
- TinyLife.Objects.AbstractSpot.YOffset
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: AbstractSpot
|
|
nameWithType: AbstractSpot
|
|
fullName: TinyLife.Objects.AbstractSpot
|
|
type: Class
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: AbstractSpot
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 13
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nAn <xref href=\"TinyLife.Objects.AbstractSpot\" data-throw-if-not-resolved=\"false\"></xref> is a base class for <xref href=\"TinyLife.Objects.ObjectSpot\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.ActionSpot\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
|
example: []
|
|
syntax:
|
|
content: public abstract class AbstractSpot
|
|
content.vb: Public MustInherit Class AbstractSpot
|
|
inheritance:
|
|
- System.Object
|
|
derivedClasses:
|
|
- TinyLife.Objects.ActionSpot
|
|
- TinyLife.Objects.ObjectSpot
|
|
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.AbstractSpot.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
modifiers.csharp:
|
|
- public
|
|
- abstract
|
|
- class
|
|
modifiers.vb:
|
|
- Public
|
|
- MustInherit
|
|
- Class
|
|
- uid: TinyLife.Objects.AbstractSpot.YOffset
|
|
commentId: P:TinyLife.Objects.AbstractSpot.YOffset
|
|
id: YOffset
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: YOffset
|
|
nameWithType: AbstractSpot.YOffset
|
|
fullName: TinyLife.Objects.AbstractSpot.YOffset
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: YOffset
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 18
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe offset on the visual y axis that the <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> slotted into this spot should render with\n"
|
|
example: []
|
|
syntax:
|
|
content: public float YOffset { get; }
|
|
parameters: []
|
|
return:
|
|
type: System.Single
|
|
content.vb: Public ReadOnly Property YOffset As Single
|
|
overload: TinyLife.Objects.AbstractSpot.YOffset*
|
|
modifiers.csharp:
|
|
- public
|
|
- get
|
|
modifiers.vb:
|
|
- Public
|
|
- ReadOnly
|
|
- uid: TinyLife.Objects.AbstractSpot.Offset
|
|
commentId: F:TinyLife.Objects.AbstractSpot.Offset
|
|
id: Offset
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Offset
|
|
nameWithType: AbstractSpot.Offset
|
|
fullName: TinyLife.Objects.AbstractSpot.Offset
|
|
type: Field
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Offset
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 22
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe offset on both the x and y axis that this spot has from the position of the <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> it belongs to\n"
|
|
example: []
|
|
syntax:
|
|
content: protected Vector2 Offset
|
|
return:
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
content.vb: Protected Offset As Vector2
|
|
modifiers.csharp:
|
|
- protected
|
|
modifiers.vb:
|
|
- Protected
|
|
- uid: TinyLife.Objects.AbstractSpot.VisualOffset
|
|
commentId: F:TinyLife.Objects.AbstractSpot.VisualOffset
|
|
id: VisualOffset
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: VisualOffset
|
|
nameWithType: AbstractSpot.VisualOffset
|
|
fullName: TinyLife.Objects.AbstractSpot.VisualOffset
|
|
type: Field
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: VisualOffset
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 27
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe visual offset on both the x and y axis that this spot has from the position of the <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> it belongs to.\nBy default, this gets set to the same value as <xref href=\"TinyLife.Objects.AbstractSpot.Offset\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
|
example: []
|
|
syntax:
|
|
content: protected Vector2 VisualOffset
|
|
return:
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
content.vb: Protected VisualOffset As Vector2
|
|
modifiers.csharp:
|
|
- protected
|
|
modifiers.vb:
|
|
- Protected
|
|
- uid: TinyLife.Objects.AbstractSpot.ValidDirections
|
|
commentId: F:TinyLife.Objects.AbstractSpot.ValidDirections
|
|
id: ValidDirections
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: ValidDirections
|
|
nameWithType: AbstractSpot.ValidDirections
|
|
fullName: TinyLife.Objects.AbstractSpot.ValidDirections
|
|
type: Field
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: ValidDirections
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 33
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe <xref href=\"MLEM.Misc.Direction2\" data-throw-if-not-resolved=\"false\"></xref> values that this spot can be accessed from.\nThese directions are relative to the owning <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref>'s <xref href=\"MLEM.Misc.Direction2.Up\" data-throw-if-not-resolved=\"false\"></xref> direction.\nNote that, for a lot of actions, including <xref href=\"TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture%2cTinyLife.GameSpeed%2cTinyLife.Objects.ActionSpot)\" data-throw-if-not-resolved=\"false\"></xref>, the first entry in this array will be chosen as the <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s rotation.\n"
|
|
example: []
|
|
syntax:
|
|
content: protected readonly Direction2[] ValidDirections
|
|
return:
|
|
type: MLEM.Misc.Direction2[]
|
|
content.vb: Protected ReadOnly ValidDirections As Direction2()
|
|
modifiers.csharp:
|
|
- protected
|
|
- readonly
|
|
modifiers.vb:
|
|
- Protected
|
|
- ReadOnly
|
|
- uid: TinyLife.Objects.AbstractSpot.Group
|
|
commentId: F:TinyLife.Objects.AbstractSpot.Group
|
|
id: Group
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Group
|
|
nameWithType: AbstractSpot.Group
|
|
fullName: TinyLife.Objects.AbstractSpot.Group
|
|
type: Field
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Group
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 40
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe groups that this spot has, which is interpreted as a bit flag.\nTwo action spots with overlapping groups ((g1 AND g2) != 0) cannot both be occupied by two different people.\nThis is used by things lke <xref href=\"TinyLife.Objects.FurnitureType.ModernBed\" data-throw-if-not-resolved=\"false\"></xref> to stop people from sitting on a side there someone is already sleeping.\nBy default, this is set to 0, meaning there is no group set.\n"
|
|
example: []
|
|
syntax:
|
|
content: public int Group
|
|
return:
|
|
type: System.Int32
|
|
content.vb: Public Group As Integer
|
|
modifiers.csharp:
|
|
- public
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: TinyLife.Objects.AbstractSpot.DrawLayer
|
|
commentId: F:TinyLife.Objects.AbstractSpot.DrawLayer
|
|
id: DrawLayer
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DrawLayer
|
|
nameWithType: AbstractSpot.DrawLayer
|
|
fullName: TinyLife.Objects.AbstractSpot.DrawLayer
|
|
type: Field
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: DrawLayer
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 45
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nThe layer that a person slotted into this action spot using <xref href=\"TinyLife.Objects.Person.OccupyActionSpot(TinyLife.Objects.Furniture%2cTinyLife.Objects.ActionSpot%2cSystem.Boolean%2cSystem.Nullable%7bMLEM.Misc.Direction2%7d)\" data-throw-if-not-resolved=\"false\"></xref> is drawn on.\nBy default, this is set to return 0, meaning it will be drawn on top of the first layer of this furniture.\n"
|
|
example: []
|
|
syntax:
|
|
content: public Func<Furniture, int> DrawLayer
|
|
return:
|
|
type: System.Func{TinyLife.Objects.Furniture,System.Int32}
|
|
content.vb: Public DrawLayer As Func(Of Furniture, Integer)
|
|
modifiers.csharp:
|
|
- public
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: TinyLife.Objects.AbstractSpot.#ctor(Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2[])
|
|
commentId: M:TinyLife.Objects.AbstractSpot.#ctor(Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2[])
|
|
id: '#ctor(Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2[])'
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: AbstractSpot(Vector2, Vector2, Single, Direction2[])
|
|
nameWithType: AbstractSpot.AbstractSpot(Vector2, Vector2, Single, Direction2[])
|
|
fullName: TinyLife.Objects.AbstractSpot.AbstractSpot(Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2, System.Single, MLEM.Misc.Direction2[])
|
|
type: Constructor
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: .ctor
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 56
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nCreates a new spot with the given data.\nThis is called by <xref href=\"TinyLife.Objects.ObjectSpot\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.ActionSpot\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
|
example: []
|
|
syntax:
|
|
content: protected AbstractSpot(Vector2 offset, Vector2 visualOffset, float yOffset, Direction2[] validDirections)
|
|
parameters:
|
|
- id: offset
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: The offset on both the x and y axis that this spot has
|
|
- id: visualOffset
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: The visual offset on both the x and y axis that this spot has
|
|
- id: yOffset
|
|
type: System.Single
|
|
description: The offset on the visual y axis
|
|
- id: validDirections
|
|
type: MLEM.Misc.Direction2[]
|
|
description: The directions that this spot can be accessed from
|
|
content.vb: Protected Sub New(offset As Vector2, visualOffset As Vector2, yOffset As Single, validDirections As Direction2())
|
|
overload: TinyLife.Objects.AbstractSpot.#ctor*
|
|
nameWithType.vb: AbstractSpot.AbstractSpot(Vector2, Vector2, Single, Direction2())
|
|
modifiers.csharp:
|
|
- protected
|
|
modifiers.vb:
|
|
- Protected
|
|
fullName.vb: TinyLife.Objects.AbstractSpot.AbstractSpot(Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2, System.Single, MLEM.Misc.Direction2())
|
|
name.vb: AbstractSpot(Vector2, Vector2, Single, Direction2())
|
|
- uid: TinyLife.Objects.AbstractSpot.GetValidDirections(MLEM.Misc.Direction2)
|
|
commentId: M:TinyLife.Objects.AbstractSpot.GetValidDirections(MLEM.Misc.Direction2)
|
|
id: GetValidDirections(MLEM.Misc.Direction2)
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetValidDirections(Direction2)
|
|
nameWithType: AbstractSpot.GetValidDirections(Direction2)
|
|
fullName: TinyLife.Objects.AbstractSpot.GetValidDirections(MLEM.Misc.Direction2)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetValidDirections
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 68
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nReturns the <xref href=\"TinyLife.Objects.AbstractSpot.ValidDirections\" data-throw-if-not-resolved=\"false\"></xref> of this spot, but rotated by the given <xref href=\"MLEM.Misc.Direction2\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
|
example: []
|
|
syntax:
|
|
content: public IEnumerable<Direction2> GetValidDirections(Direction2 rotation)
|
|
parameters:
|
|
- id: rotation
|
|
type: MLEM.Misc.Direction2
|
|
description: The rotation
|
|
return:
|
|
type: System.Collections.Generic.IEnumerable{MLEM.Misc.Direction2}
|
|
description: The rotations that are valid for this spot
|
|
content.vb: Public Function GetValidDirections(rotation As Direction2) As IEnumerable(Of Direction2)
|
|
overload: TinyLife.Objects.AbstractSpot.GetValidDirections*
|
|
modifiers.csharp:
|
|
- public
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: TinyLife.Objects.AbstractSpot.GetLocation(TinyLife.Objects.Furniture,System.Boolean)
|
|
commentId: M:TinyLife.Objects.AbstractSpot.GetLocation(TinyLife.Objects.Furniture,System.Boolean)
|
|
id: GetLocation(TinyLife.Objects.Furniture,System.Boolean)
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetLocation(Furniture, Boolean)
|
|
nameWithType: AbstractSpot.GetLocation(Furniture, Boolean)
|
|
fullName: TinyLife.Objects.AbstractSpot.GetLocation(TinyLife.Objects.Furniture, System.Boolean)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetLocation
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 79
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nReturns the location that this spot has in world space, based on the given <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> and its position and rotation.\n"
|
|
example: []
|
|
syntax:
|
|
content: public Vector2 GetLocation(Furniture furniture, bool visual)
|
|
parameters:
|
|
- id: furniture
|
|
type: TinyLife.Objects.Furniture
|
|
description: The furniture that this spot belongs to
|
|
- id: visual
|
|
type: System.Boolean
|
|
description: Whetehr the <xref href="TinyLife.Objects.AbstractSpot.VisualOffset" data-throw-if-not-resolved="false"></xref> should be used instead of the <xref href="TinyLife.Objects.AbstractSpot.Offset" data-throw-if-not-resolved="false"></xref>
|
|
return:
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: This spot's location in world space
|
|
content.vb: Public Function GetLocation(furniture As Furniture, visual As Boolean) As Vector2
|
|
overload: TinyLife.Objects.AbstractSpot.GetLocation*
|
|
modifiers.csharp:
|
|
- public
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: TinyLife.Objects.AbstractSpot.DoGroupsOverlap(TinyLife.Objects.AbstractSpot)
|
|
commentId: M:TinyLife.Objects.AbstractSpot.DoGroupsOverlap(TinyLife.Objects.AbstractSpot)
|
|
id: DoGroupsOverlap(TinyLife.Objects.AbstractSpot)
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: DoGroupsOverlap(AbstractSpot)
|
|
nameWithType: AbstractSpot.DoGroupsOverlap(AbstractSpot)
|
|
fullName: TinyLife.Objects.AbstractSpot.DoGroupsOverlap(TinyLife.Objects.AbstractSpot)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: TinyLife/Objects/ActionSpot.cs
|
|
branch: master
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: DoGroupsOverlap
|
|
path: Objects/ActionSpot.cs
|
|
startLine: 90
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Objects
|
|
summary: "\nReturns whether the passed <xref href=\"TinyLife.Objects.AbstractSpot\" data-throw-if-not-resolved=\"false\"></xref>'s <xref href=\"TinyLife.Objects.AbstractSpot.Group\" data-throw-if-not-resolved=\"false\"></xref> and this spot's Group overlap.\nTwo overlapping groups are groups for which (g1 AND g2) != 0.\n"
|
|
example: []
|
|
syntax:
|
|
content: public bool DoGroupsOverlap(AbstractSpot other)
|
|
parameters:
|
|
- id: other
|
|
type: TinyLife.Objects.AbstractSpot
|
|
description: The action spot whose groups to compare
|
|
return:
|
|
type: System.Boolean
|
|
description: Whether at least one group overlaps
|
|
content.vb: Public Function DoGroupsOverlap(other As AbstractSpot) As Boolean
|
|
overload: TinyLife.Objects.AbstractSpot.DoGroupsOverlap*
|
|
modifiers.csharp:
|
|
- public
|
|
modifiers.vb:
|
|
- Public
|
|
references:
|
|
- uid: TinyLife.Objects.AbstractSpot
|
|
commentId: T:TinyLife.Objects.AbstractSpot
|
|
parent: TinyLife.Objects
|
|
name: AbstractSpot
|
|
nameWithType: AbstractSpot
|
|
fullName: TinyLife.Objects.AbstractSpot
|
|
- uid: TinyLife.Objects.ObjectSpot
|
|
commentId: T:TinyLife.Objects.ObjectSpot
|
|
parent: TinyLife.Objects
|
|
name: ObjectSpot
|
|
nameWithType: ObjectSpot
|
|
fullName: TinyLife.Objects.ObjectSpot
|
|
- uid: TinyLife.Objects.ActionSpot
|
|
commentId: T:TinyLife.Objects.ActionSpot
|
|
parent: TinyLife.Objects
|
|
name: ActionSpot
|
|
nameWithType: ActionSpot
|
|
fullName: TinyLife.Objects.ActionSpot
|
|
- 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: 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.AbstractSpot.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<AbstractSpot>()
|
|
nameWithType: Extensions.JsonCopy<AbstractSpot>()
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.AbstractSpot>()
|
|
nameWithType.vb: Extensions.JsonCopy(Of AbstractSpot)()
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.AbstractSpot)()
|
|
name.vb: JsonCopy(Of AbstractSpot)()
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
|
|
name: JsonCopy<AbstractSpot>
|
|
nameWithType: Extensions.JsonCopy<AbstractSpot>
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.AbstractSpot>
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
|
|
name: JsonCopy(Of AbstractSpot)
|
|
nameWithType: Extensions.JsonCopy(Of AbstractSpot)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.AbstractSpot)
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
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<T>
|
|
nameWithType: Extensions.JsonCopy<T>
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
|
|
- 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.Furniture
|
|
commentId: T:TinyLife.Objects.Furniture
|
|
parent: TinyLife.Objects
|
|
name: Furniture
|
|
nameWithType: Furniture
|
|
fullName: TinyLife.Objects.Furniture
|
|
- uid: TinyLife.Objects.Person
|
|
commentId: T:TinyLife.Objects.Person
|
|
parent: TinyLife.Objects
|
|
name: Person
|
|
nameWithType: Person
|
|
fullName: TinyLife.Objects.Person
|
|
- uid: TinyLife.Objects.AbstractSpot.YOffset*
|
|
commentId: Overload:TinyLife.Objects.AbstractSpot.YOffset
|
|
name: YOffset
|
|
nameWithType: AbstractSpot.YOffset
|
|
fullName: TinyLife.Objects.AbstractSpot.YOffset
|
|
- uid: System.Single
|
|
commentId: T:System.Single
|
|
parent: System
|
|
isExternal: true
|
|
name: Single
|
|
nameWithType: Single
|
|
fullName: System.Single
|
|
- uid: Microsoft.Xna.Framework.Vector2
|
|
commentId: T:Microsoft.Xna.Framework.Vector2
|
|
parent: Microsoft.Xna.Framework
|
|
isExternal: true
|
|
name: Vector2
|
|
nameWithType: Vector2
|
|
fullName: Microsoft.Xna.Framework.Vector2
|
|
- 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.AbstractSpot.Offset
|
|
commentId: F:TinyLife.Objects.AbstractSpot.Offset
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
name: Offset
|
|
nameWithType: AbstractSpot.Offset
|
|
fullName: TinyLife.Objects.AbstractSpot.Offset
|
|
- uid: MLEM.Misc.Direction2
|
|
commentId: T:MLEM.Misc.Direction2
|
|
parent: MLEM.Misc
|
|
isExternal: true
|
|
name: Direction2
|
|
nameWithType: Direction2
|
|
fullName: MLEM.Misc.Direction2
|
|
- uid: MLEM.Misc.Direction2.Up
|
|
commentId: F:MLEM.Misc.Direction2.Up
|
|
isExternal: true
|
|
- uid: TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture,TinyLife.GameSpeed,TinyLife.Objects.ActionSpot)
|
|
commentId: M:TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture,TinyLife.GameSpeed,TinyLife.Objects.ActionSpot)
|
|
parent: TinyLife.Actions.Action
|
|
name: Sit(Furniture, GameSpeed, ActionSpot)
|
|
nameWithType: Action.Sit(Furniture, GameSpeed, ActionSpot)
|
|
fullName: TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture, TinyLife.GameSpeed, TinyLife.Objects.ActionSpot)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture,TinyLife.GameSpeed,TinyLife.Objects.ActionSpot)
|
|
name: Sit
|
|
nameWithType: Action.Sit
|
|
fullName: TinyLife.Actions.Action.Sit
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: TinyLife.Objects.Furniture
|
|
name: Furniture
|
|
nameWithType: Furniture
|
|
fullName: TinyLife.Objects.Furniture
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: TinyLife.GameSpeed
|
|
name: GameSpeed
|
|
nameWithType: GameSpeed
|
|
fullName: TinyLife.GameSpeed
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: TinyLife.Objects.ActionSpot
|
|
name: ActionSpot
|
|
nameWithType: ActionSpot
|
|
fullName: TinyLife.Objects.ActionSpot
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Action.Sit(TinyLife.Objects.Furniture,TinyLife.GameSpeed,TinyLife.Objects.ActionSpot)
|
|
name: Sit
|
|
nameWithType: Action.Sit
|
|
fullName: TinyLife.Actions.Action.Sit
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: TinyLife.Objects.Furniture
|
|
name: Furniture
|
|
nameWithType: Furniture
|
|
fullName: TinyLife.Objects.Furniture
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: TinyLife.GameSpeed
|
|
name: GameSpeed
|
|
nameWithType: GameSpeed
|
|
fullName: TinyLife.GameSpeed
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: TinyLife.Objects.ActionSpot
|
|
name: ActionSpot
|
|
nameWithType: ActionSpot
|
|
fullName: TinyLife.Objects.ActionSpot
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: MLEM.Misc.Direction2[]
|
|
isExternal: true
|
|
name: Direction2[]
|
|
nameWithType: Direction2[]
|
|
fullName: MLEM.Misc.Direction2[]
|
|
nameWithType.vb: Direction2()
|
|
fullName.vb: MLEM.Misc.Direction2()
|
|
name.vb: Direction2()
|
|
spec.csharp:
|
|
- uid: MLEM.Misc.Direction2
|
|
name: Direction2
|
|
nameWithType: Direction2
|
|
fullName: MLEM.Misc.Direction2
|
|
isExternal: true
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
spec.vb:
|
|
- uid: MLEM.Misc.Direction2
|
|
name: Direction2
|
|
nameWithType: Direction2
|
|
fullName: MLEM.Misc.Direction2
|
|
isExternal: true
|
|
- name: ()
|
|
nameWithType: ()
|
|
fullName: ()
|
|
- uid: MLEM.Misc
|
|
commentId: N:MLEM.Misc
|
|
isExternal: true
|
|
name: MLEM.Misc
|
|
nameWithType: MLEM.Misc
|
|
fullName: MLEM.Misc
|
|
- uid: TinyLife.Actions.Action
|
|
commentId: T:TinyLife.Actions.Action
|
|
parent: TinyLife.Actions
|
|
name: Action
|
|
nameWithType: Action
|
|
fullName: TinyLife.Actions.Action
|
|
- uid: TinyLife.Actions
|
|
commentId: N:TinyLife.Actions
|
|
name: TinyLife.Actions
|
|
nameWithType: TinyLife.Actions
|
|
fullName: TinyLife.Actions
|
|
- uid: TinyLife.Objects.FurnitureType.ModernBed
|
|
commentId: F:TinyLife.Objects.FurnitureType.ModernBed
|
|
isExternal: true
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
- uid: TinyLife.Objects.Person.OccupyActionSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot,System.Boolean,System.Nullable{MLEM.Misc.Direction2})
|
|
commentId: M:TinyLife.Objects.Person.OccupyActionSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot,System.Boolean,System.Nullable{MLEM.Misc.Direction2})
|
|
isExternal: true
|
|
- uid: System.Func{TinyLife.Objects.Furniture,System.Int32}
|
|
commentId: T:System.Func{TinyLife.Objects.Furniture,System.Int32}
|
|
parent: System
|
|
definition: System.Func`2
|
|
name: Func<Furniture, Int32>
|
|
nameWithType: Func<Furniture, Int32>
|
|
fullName: System.Func<TinyLife.Objects.Furniture, System.Int32>
|
|
nameWithType.vb: Func(Of Furniture, Int32)
|
|
fullName.vb: System.Func(Of TinyLife.Objects.Furniture, System.Int32)
|
|
name.vb: Func(Of Furniture, Int32)
|
|
spec.csharp:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
nameWithType: Func
|
|
fullName: System.Func
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: TinyLife.Objects.Furniture
|
|
name: Furniture
|
|
nameWithType: Furniture
|
|
fullName: TinyLife.Objects.Furniture
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Int32
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
isExternal: true
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
nameWithType: Func
|
|
fullName: System.Func
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: TinyLife.Objects.Furniture
|
|
name: Furniture
|
|
nameWithType: Furniture
|
|
fullName: TinyLife.Objects.Furniture
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Int32
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Func`2
|
|
commentId: T:System.Func`2
|
|
isExternal: true
|
|
name: Func<T, TResult>
|
|
nameWithType: Func<T, TResult>
|
|
fullName: System.Func<T, TResult>
|
|
nameWithType.vb: Func(Of T, TResult)
|
|
fullName.vb: System.Func(Of T, TResult)
|
|
name.vb: Func(Of T, TResult)
|
|
spec.csharp:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
nameWithType: Func
|
|
fullName: System.Func
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- name: TResult
|
|
nameWithType: TResult
|
|
fullName: TResult
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
nameWithType: Func
|
|
fullName: System.Func
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- name: TResult
|
|
nameWithType: TResult
|
|
fullName: TResult
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: TinyLife.Objects.AbstractSpot.#ctor*
|
|
commentId: Overload:TinyLife.Objects.AbstractSpot.#ctor
|
|
name: AbstractSpot
|
|
nameWithType: AbstractSpot.AbstractSpot
|
|
fullName: TinyLife.Objects.AbstractSpot.AbstractSpot
|
|
- uid: TinyLife.Objects.AbstractSpot.ValidDirections
|
|
commentId: F:TinyLife.Objects.AbstractSpot.ValidDirections
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
name: ValidDirections
|
|
nameWithType: AbstractSpot.ValidDirections
|
|
fullName: TinyLife.Objects.AbstractSpot.ValidDirections
|
|
- uid: TinyLife.Objects.AbstractSpot.GetValidDirections*
|
|
commentId: Overload:TinyLife.Objects.AbstractSpot.GetValidDirections
|
|
name: GetValidDirections
|
|
nameWithType: AbstractSpot.GetValidDirections
|
|
fullName: TinyLife.Objects.AbstractSpot.GetValidDirections
|
|
- uid: System.Collections.Generic.IEnumerable{MLEM.Misc.Direction2}
|
|
commentId: T:System.Collections.Generic.IEnumerable{MLEM.Misc.Direction2}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable<Direction2>
|
|
nameWithType: IEnumerable<Direction2>
|
|
fullName: System.Collections.Generic.IEnumerable<MLEM.Misc.Direction2>
|
|
nameWithType.vb: IEnumerable(Of Direction2)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of MLEM.Misc.Direction2)
|
|
name.vb: IEnumerable(Of Direction2)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: MLEM.Misc.Direction2
|
|
name: Direction2
|
|
nameWithType: Direction2
|
|
fullName: MLEM.Misc.Direction2
|
|
isExternal: true
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: MLEM.Misc.Direction2
|
|
name: Direction2
|
|
nameWithType: Direction2
|
|
fullName: MLEM.Misc.Direction2
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
commentId: T:System.Collections.Generic.IEnumerable`1
|
|
isExternal: true
|
|
name: IEnumerable<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
nameWithType.vb: IEnumerable(Of T)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
|
name.vb: IEnumerable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
- uid: TinyLife.Objects.AbstractSpot.VisualOffset
|
|
commentId: F:TinyLife.Objects.AbstractSpot.VisualOffset
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
name: VisualOffset
|
|
nameWithType: AbstractSpot.VisualOffset
|
|
fullName: TinyLife.Objects.AbstractSpot.VisualOffset
|
|
- uid: TinyLife.Objects.AbstractSpot.GetLocation*
|
|
commentId: Overload:TinyLife.Objects.AbstractSpot.GetLocation
|
|
name: GetLocation
|
|
nameWithType: AbstractSpot.GetLocation
|
|
fullName: TinyLife.Objects.AbstractSpot.GetLocation
|
|
- uid: System.Boolean
|
|
commentId: T:System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
name: Boolean
|
|
nameWithType: Boolean
|
|
fullName: System.Boolean
|
|
- uid: TinyLife.Objects.AbstractSpot.Group
|
|
commentId: F:TinyLife.Objects.AbstractSpot.Group
|
|
parent: TinyLife.Objects.AbstractSpot
|
|
name: Group
|
|
nameWithType: AbstractSpot.Group
|
|
fullName: TinyLife.Objects.AbstractSpot.Group
|
|
- uid: TinyLife.Objects.AbstractSpot.DoGroupsOverlap*
|
|
commentId: Overload:TinyLife.Objects.AbstractSpot.DoGroupsOverlap
|
|
name: DoGroupsOverlap
|
|
nameWithType: AbstractSpot.DoGroupsOverlap
|
|
fullName: TinyLife.Objects.AbstractSpot.DoGroupsOverlap
|