2023-10-11 16:05:32 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Objects.FenceWall
commentId : T:TinyLife.Objects.FenceWall
id : FenceWall
parent : TinyLife.Objects
children :
- TinyLife.Objects.FenceWall.#ctor(TinyLife.Objects.FenceType,System.Int32[],System.Int32,Microsoft.Xna.Framework.Point[])
- TinyLife.Objects.FenceWall.Colors
- TinyLife.Objects.FenceWall.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
- TinyLife.Objects.FenceWall.GetPrice
- TinyLife.Objects.FenceWall.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
- TinyLife.Objects.FenceWall.Type
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.FenceWall.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
langs :
- csharp
- vb
name : FenceWall
nameWithType : FenceWall
fullName : TinyLife.Objects.FenceWall
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
A fence wall is a type of <xref href="TinyLife.Objects.WallLike" data-throw-if-not-resolved="false"></xref> that works similar to a <xref href="TinyLife.World.Wall" data-throw-if-not-resolved="false"></xref> in placement, but is type-based and doesn't support wallpapering.
Fence walls are an official replacement for the deprecated <xref href="TinyLife.Objects.Fence" data-throw-if-not-resolved="false"></xref> furniture type.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content: 'public class FenceWall : WallLike, IGenericDataHolder'
content.vb : Public Class FenceWall Inherits WallLike Implements IGenericDataHolder
inheritance :
- System.Object
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- TinyLife.Objects.WallLike
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
- TinyLife.Objects.WallLike.Positions
- TinyLife.Objects.WallLike.Floor
- TinyLife.Objects.WallLike.IsStatic
- TinyLife.Objects.WallLike.Opening
- TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
- TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
2024-07-09 18:54:47 +02:00
- TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map,TinyLife.Objects.PersonLike)
2023-10-11 16:05:32 +02:00
- TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map,TinyLife.World.Opening)
- TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
- TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,System.Single)
- TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
- TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
- TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
- TinyLife.Objects.WallLike.IsVerticalForCamera(System.Boolean)
- TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
- 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.FenceWall.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Objects.FenceWall.Type
commentId : F:TinyLife.Objects.FenceWall.Type
id : Type
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : Type
nameWithType : FenceWall.Type
fullName : TinyLife.Objects.FenceWall.Type
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The <xref href="TinyLife.Objects.FenceType" data-throw-if-not-resolved="false"></xref> that this fence has.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public readonly FenceType Type
return :
type : TinyLife.Objects.FenceType
content.vb : >-
<DataMember>
Public ReadOnly Type As FenceType
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Objects.FenceWall.Colors
commentId : F:TinyLife.Objects.FenceWall.Colors
id : Colors
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : Colors
nameWithType : FenceWall.Colors
fullName : TinyLife.Objects.FenceWall.Colors
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-04-14 17:55:54 +02:00
summary : The colors indices that this fence has for each of its <xref href="TinyLife.Objects.FenceWall.Type" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Objects.FenceType.Colors" data-throw-if-not-resolved="false"></xref>.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
2024-04-14 17:55:54 +02:00
public int[] Colors
2023-10-11 16:05:32 +02:00
return :
type : System.Int32[]
content.vb : >-
<DataMember>
2024-04-14 17:55:54 +02:00
Public Colors As Integer()
2023-10-11 16:05:32 +02:00
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Objects.FenceWall.#ctor(TinyLife.Objects.FenceType,System.Int32[],System.Int32,Microsoft.Xna.Framework.Point[])
commentId : M:TinyLife.Objects.FenceWall.#ctor(TinyLife.Objects.FenceType,System.Int32[],System.Int32,Microsoft.Xna.Framework.Point[])
id : '#ctor(TinyLife.Objects.FenceType,System.Int32[],System.Int32,Microsoft.Xna.Framework.Point[])'
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : FenceWall(FenceType, int[], int, params Point[])
nameWithType : FenceWall.FenceWall(FenceType, int[], int, params Point[])
fullName : TinyLife.Objects.FenceWall.FenceWall(TinyLife.Objects.FenceType, int[], int, params Microsoft.Xna.Framework.Point[])
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Objects
example : [ ]
syntax :
content : public FenceWall(FenceType type, int[] colors, int floor, params Point[] positions)
parameters :
- id : type
type : TinyLife.Objects.FenceType
- id : colors
type : System.Int32[]
- id : floor
type : System.Int32
- id : positions
type : Microsoft.Xna.Framework.Point[]
content.vb : Public Sub New(type As FenceType, colors As Integer(), floor As Integer, ParamArray positions As Point())
overload : TinyLife.Objects.FenceWall.#ctor*
nameWithType.vb : FenceWall.New(FenceType, Integer(), Integer, ParamArray Point())
fullName.vb : TinyLife.Objects.FenceWall.New(TinyLife.Objects.FenceType, Integer(), Integer, ParamArray Microsoft.Xna.Framework.Point())
name.vb : New(FenceType, Integer(), Integer, ParamArray Point())
- uid : TinyLife.Objects.FenceWall.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
commentId : M:TinyLife.Objects.FenceWall.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
id : Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : Draw(Map, GameTime, SpriteBatch, Vector2, Color?, bool, bool)
nameWithType : FenceWall.Draw(Map, GameTime, SpriteBatch, Vector2, Color?, bool, bool)
fullName : TinyLife.Objects.FenceWall.Draw(TinyLife.World.Map, Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, bool, bool)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Draws this wall in the world, along with its <xref href="TinyLife.Objects.WallLike.Opening" data-throw-if-not-resolved="false"></xref> and potentially <xref href="TinyLife.World.Wall.Wallpapers" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Objects.FenceWall.Type" data-throw-if-not-resolved="false"></xref>.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : public override void Draw(Map map, GameTime time, SpriteBatch batch, Vector2 drawPos, Color? overrideColor = null, bool drawOpening = true, bool isInWorld = true)
parameters :
- id : map
type : TinyLife.World.Map
description : The map to draw this wall on
- id : time
type : Microsoft.Xna.Framework.GameTime
description : The game time
- id : batch
type : Microsoft.Xna.Framework.Graphics.SpriteBatch
description : The sprite batch to draw with
- id : drawPos
type : Microsoft.Xna.Framework.Vector2
description : The position to draw the wall at, in draw space
- id : overrideColor
type : System.Nullable{Microsoft.Xna.Framework.Color}
description : A color that this object should be rendered with, instead of its default color
- id : drawOpening
type : System.Boolean
2024-01-07 16:53:47 +01:00
description : Whether this wall-like object's <xref href="TinyLife.Objects.WallLike.Opening" data-throw-if-not-resolved="false"></xref> should be drawn.
2023-10-11 16:05:32 +02:00
- id : isInWorld
type : System.Boolean
description : Whether this wall-like object is currently in the world, or just a preview.
content.vb : Public Overrides Sub Draw(map As Map, time As GameTime, batch As SpriteBatch, drawPos As Vector2, overrideColor As Color? = Nothing, drawOpening As Boolean = True, isInWorld As Boolean = True)
overridden : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
overload : TinyLife.Objects.FenceWall.Draw*
nameWithType.vb : FenceWall.Draw(Map, GameTime, SpriteBatch, Vector2, Color?, Boolean, Boolean)
fullName.vb : TinyLife.Objects.FenceWall.Draw(TinyLife.World.Map, Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, Boolean, Boolean)
name.vb : Draw(Map, GameTime, SpriteBatch, Vector2, Color?, Boolean, Boolean)
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.FenceWall.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Objects.FenceWall.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
id : Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
2024-10-17 17:28:12 +02:00
name : Validate(Map, AppliedMigrations)
nameWithType : FenceWall.Validate(Map, AppliedMigrations)
fullName : TinyLife.Objects.FenceWall.Validate(TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : This method is called when this object is loaded from disk.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
2024-10-17 17:28:12 +02:00
content : public override bool Validate(Map map, AppliedMigrations appliedMigrations)
2023-10-11 16:05:32 +02:00
parameters :
- id : map
type : TinyLife.World.Map
2024-10-17 17:28:12 +02:00
- id : appliedMigrations
type : TinyLife.Utilities.AppliedMigrations
2023-10-11 16:05:32 +02:00
return :
type : System.Boolean
description : false if the object is not valid, true otherwise
2024-10-17 17:28:12 +02:00
content.vb : Public Overrides Function Validate(map As Map, appliedMigrations As AppliedMigrations) As Boolean
overridden : TinyLife.Objects.WallLike.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
overload : TinyLife.Objects.FenceWall.Validate*
- uid : TinyLife.Objects.FenceWall.GetPrice
commentId : M:TinyLife.Objects.FenceWall.GetPrice
id : GetPrice
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : GetPrice()
nameWithType : FenceWall.GetPrice()
fullName : TinyLife.Objects.FenceWall.GetPrice()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Returns the price for this wall, including its <xref href="TinyLife.Objects.WallLike.Opening" data-throw-if-not-resolved="false"></xref> as well as its <xref href="TinyLife.World.Wall.Wallpapers" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Objects.FenceWall.Type" data-throw-if-not-resolved="false"></xref>.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : public override float GetPrice()
return :
type : System.Single
description : The price.
content.vb : Public Overrides Function GetPrice() As Single
overridden : TinyLife.Objects.WallLike.GetPrice
overload : TinyLife.Objects.FenceWall.GetPrice*
- uid : TinyLife.Objects.FenceWall.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
commentId : M:TinyLife.Objects.FenceWall.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
id : OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
parent : TinyLife.Objects.FenceWall
langs :
- csharp
- vb
name : OnNeighborChanged(Map, WallLike)
nameWithType : FenceWall.OnNeighborChanged(Map, WallLike)
fullName : TinyLife.Objects.FenceWall.OnNeighborChanged(TinyLife.World.Map, TinyLife.Objects.WallLike)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when a neighboring wall of this wall changes.
This method is called when a neighboring wall calls <xref href="TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)" data-throw-if-not-resolved="false"></xref>.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : protected override void OnNeighborChanged(Map map, WallLike neighbor)
parameters :
- id : map
type : TinyLife.World.Map
description : The map.
- id : neighbor
type : TinyLife.Objects.WallLike
description : The nighbor that changed.
content.vb : Protected Overrides Sub OnNeighborChanged(map As Map, neighbor As WallLike)
overridden : TinyLife.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
overload : TinyLife.Objects.FenceWall.OnNeighborChanged*
references :
- uid : TinyLife.Objects.WallLike
commentId : T:TinyLife.Objects.WallLike
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html
2023-10-11 16:05:32 +02:00
name : WallLike
nameWithType : WallLike
fullName : TinyLife.Objects.WallLike
- uid : TinyLife.World.Wall
commentId : T:TinyLife.World.Wall
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Wall.html
2023-10-11 16:05:32 +02:00
name : Wall
nameWithType : Wall
fullName : TinyLife.World.Wall
- uid : TinyLife.Objects.Fence
commentId : T:TinyLife.Objects.Fence
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Fence.html
2023-10-11 16:05:32 +02:00
name : Fence
nameWithType : Fence
fullName : TinyLife.Objects.Fence
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-10-11 16:05:32 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-10-11 16:05:32 +02:00
- 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 : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
isExternal : true
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
- uid : TinyLife.Objects.WallLike.Positions
commentId : F:TinyLife.Objects.WallLike.Positions
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Positions
2023-10-11 16:05:32 +02:00
name : Positions
nameWithType : WallLike.Positions
fullName : TinyLife.Objects.WallLike.Positions
- uid : TinyLife.Objects.WallLike.Floor
commentId : F:TinyLife.Objects.WallLike.Floor
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Floor
2023-10-11 16:05:32 +02:00
name : Floor
nameWithType : WallLike.Floor
fullName : TinyLife.Objects.WallLike.Floor
- uid : TinyLife.Objects.WallLike.IsStatic
commentId : F:TinyLife.Objects.WallLike.IsStatic
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsStatic
2023-10-11 16:05:32 +02:00
name : IsStatic
nameWithType : WallLike.IsStatic
fullName : TinyLife.Objects.WallLike.IsStatic
- uid : TinyLife.Objects.WallLike.Opening
commentId : P:TinyLife.Objects.WallLike.Opening
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Opening
2023-10-11 16:05:32 +02:00
name : Opening
nameWithType : WallLike.Opening
fullName : TinyLife.Objects.WallLike.Opening
- uid : TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
commentId : M:TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnAdded_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
name : OnAdded(Map)
nameWithType : WallLike.OnAdded(Map)
fullName : TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
spec.csharp :
- uid : TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
name : OnAdded
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnAdded_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.OnAdded(TinyLife.World.Map)
name : OnAdded
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnAdded_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
commentId : M:TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnRemoved_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
name : OnRemoved(Map)
nameWithType : WallLike.OnRemoved(Map)
fullName : TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
spec.csharp :
- uid : TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
name : OnRemoved
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnRemoved_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.OnRemoved(TinyLife.World.Map)
name : OnRemoved
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnRemoved_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map,TinyLife.Objects.PersonLike)
commentId : M:TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map,TinyLife.Objects.PersonLike)
2023-10-11 16:05:32 +02:00
parent : TinyLife.Objects.WallLike
2024-07-09 18:54:47 +02:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetFreeActionSpotInfos_TinyLife_World_Map_TinyLife_Objects_PersonLike_
name : GetFreeActionSpotInfos(Map, PersonLike)
nameWithType : WallLike.GetFreeActionSpotInfos(Map, PersonLike)
fullName : TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map, TinyLife.Objects.PersonLike)
2023-10-11 16:05:32 +02:00
spec.csharp :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map,TinyLife.Objects.PersonLike)
name : GetFreeActionSpotInfos
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetFreeActionSpotInfos_TinyLife_World_Map_TinyLife_Objects_PersonLike_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.WallLike.GetFreeActionSpotInfos(TinyLife.World.Map,TinyLife.Objects.PersonLike)
name : GetFreeActionSpotInfos
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetFreeActionSpotInfos_TinyLife_World_Map_TinyLife_Objects_PersonLike_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map,TinyLife.World.Opening)
commentId : M:TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map,TinyLife.World.Opening)
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_SetOpening_TinyLife_World_Map_TinyLife_World_Opening_
2023-10-11 16:05:32 +02:00
name : SetOpening(Map, Opening)
nameWithType : WallLike.SetOpening(Map, Opening)
fullName : TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map, TinyLife.World.Opening)
spec.csharp :
- uid : TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map,TinyLife.World.Opening)
name : SetOpening
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_SetOpening_TinyLife_World_Map_TinyLife_World_Opening_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : TinyLife.World.Opening
name : Opening
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Opening.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.SetOpening(TinyLife.World.Map,TinyLife.World.Opening)
name : SetOpening
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_SetOpening_TinyLife_World_Map_TinyLife_World_Opening_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : TinyLife.World.Opening
name : Opening
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Opening.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
commentId : M:TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_NotifyNeighbors_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
name : NotifyNeighbors(Map)
nameWithType : WallLike.NotifyNeighbors(Map)
fullName : TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
spec.csharp :
- uid : TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
name : NotifyNeighbors
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_NotifyNeighbors_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.NotifyNeighbors(TinyLife.World.Map)
name : NotifyNeighbors
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_NotifyNeighbors_TinyLife_World_Map_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,System.Single)
commentId : M:TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,System.Single)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetDepth_TinyLife_World_Map_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_System_Int32_System_Single_
2023-10-11 16:05:32 +02:00
name : GetDepth(Map, Point, Point, int, float)
nameWithType : WallLike.GetDepth(Map, Point, Point, int, float)
fullName : TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, int, float)
nameWithType.vb : WallLike.GetDepth(Map, Point, Point, Integer, Single)
fullName.vb : TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, Integer, Single)
name.vb : GetDepth(Map, Point, Point, Integer, Single)
spec.csharp :
- uid : TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,System.Single)
name : GetDepth
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetDepth_TinyLife_World_Map_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_System_Int32_System_Single_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.GetDepth(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,System.Single)
name : GetDepth
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetDepth_TinyLife_World_Map_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_System_Int32_System_Single_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
- uid : TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetIndexForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
name : GetIndexForCamera(Point, Point)
nameWithType : WallLike.GetIndexForCamera(Point, Point)
fullName : TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetIndexForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetIndexForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.GetIndexForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetIndexForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetIndexForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
- uid : TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPositionForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
name : GetPositionForCamera(Point, Point)
nameWithType : WallLike.GetPositionForCamera(Point, Point)
fullName : TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetPositionForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPositionForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.GetPositionForCamera(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetPositionForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPositionForCamera_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
- uid : TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetCenterBottomPos_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
name : GetCenterBottomPos(Point, Point)
nameWithType : WallLike.GetCenterBottomPos(Point, Point)
fullName : TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetCenterBottomPos
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetCenterBottomPos_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.GetCenterBottomPos(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : GetCenterBottomPos
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetCenterBottomPos_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
- uid : TinyLife.Objects.WallLike.IsVerticalForCamera(System.Boolean)
commentId : M:TinyLife.Objects.WallLike.IsVerticalForCamera(System.Boolean)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVerticalForCamera_System_Boolean_
2023-10-11 16:05:32 +02:00
name : IsVerticalForCamera(bool)
nameWithType : WallLike.IsVerticalForCamera(bool)
fullName : TinyLife.Objects.WallLike.IsVerticalForCamera(bool)
nameWithType.vb : WallLike.IsVerticalForCamera(Boolean)
fullName.vb : TinyLife.Objects.WallLike.IsVerticalForCamera(Boolean)
name.vb : IsVerticalForCamera(Boolean)
spec.csharp :
- uid : TinyLife.Objects.WallLike.IsVerticalForCamera(System.Boolean)
name : IsVerticalForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVerticalForCamera_System_Boolean_
2023-10-11 16:05:32 +02:00
- name : (
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.IsVerticalForCamera(System.Boolean)
name : IsVerticalForCamera
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVerticalForCamera_System_Boolean_
2023-10-11 16:05:32 +02:00
- name : (
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
- uid : TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVertical_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
name : IsVertical(Point, Point)
nameWithType : WallLike.IsVertical(Point, Point)
fullName : TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : IsVertical
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVertical_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.IsVertical(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name : IsVertical
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_IsVertical_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
2023-10-11 16:05:32 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
definition : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name : SetData
isExternal : true
- name : <
- name : T
- name : '>'
- name : (
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name : SetData
isExternal : true
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- name : T
- name : )
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
name.vb : GetData(Of T)(String)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name : GetData
isExternal : true
- name : <
- name : T
- name : '>'
- name : (
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name : GetData
isExternal : true
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal : true
name : GetDataKeys()
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
- 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.Objects.FenceWall.TinyLife.Utilities.Extensions.JsonCopy``1
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
name : JsonCopy<FenceWall>(FenceWall)
nameWithType : Extensions.JsonCopy<FenceWall>(FenceWall)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.FenceWall>(TinyLife.Objects.FenceWall)
nameWithType.vb : Extensions.JsonCopy(Of FenceWall)(FenceWall)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.FenceWall)(TinyLife.Objects.FenceWall)
name.vb : JsonCopy(Of FenceWall)(FenceWall)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.FenceWall)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
- name : <
- uid : TinyLife.Objects.FenceWall
name : FenceWall
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html
2023-10-11 16:05:32 +02:00
- name : '>'
- name : (
- uid : TinyLife.Objects.FenceWall
name : FenceWall
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.FenceWall)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.Objects.FenceWall
name : FenceWall
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html
2023-10-11 16:05:32 +02:00
- name : )
- name : (
- uid : TinyLife.Objects.FenceWall
name : FenceWall
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.World
commentId : N : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2023-10-11 16:05:32 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2023-10-11 16:05:32 +02:00
- uid : System
commentId : N : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
name : System
nameWithType : System
fullName : System
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name : SetData
isExternal : true
- name : <
- name : T
- name : '>'
- name : (
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name : SetData
isExternal : true
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
- name : <
- name : T
- name : '>'
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-10-11 16:05:32 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2023-10-11 16:05:32 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-10-11 16:05:32 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-10-11 16:05:32 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.FenceType
commentId : T:TinyLife.Objects.FenceType
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceType.html
2023-10-11 16:05:32 +02:00
name : FenceType
nameWithType : FenceType
fullName : TinyLife.Objects.FenceType
- uid : TinyLife.Objects.FenceWall.Type
commentId : F:TinyLife.Objects.FenceWall.Type
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall_Type
2023-10-11 16:05:32 +02:00
name : Type
nameWithType : FenceWall.Type
fullName : TinyLife.Objects.FenceWall.Type
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Objects.FenceType.Colors
commentId : F:TinyLife.Objects.FenceType.Colors
href : TinyLife.Objects.FenceType.html#TinyLife_Objects_FenceType_Colors
name : Colors
nameWithType : FenceType.Colors
fullName : TinyLife.Objects.FenceType.Colors
2023-10-11 16:05:32 +02:00
- uid : System.Int32[]
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int[]
nameWithType : int[]
fullName : int[]
nameWithType.vb : Integer()
fullName.vb : Integer()
name.vb : Integer()
spec.csharp :
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '['
- name : ']'
spec.vb :
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : (
- name : )
- uid : TinyLife.Objects.FenceWall.#ctor*
commentId : Overload:TinyLife.Objects.FenceWall.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall__ctor_TinyLife_Objects_FenceType_System_Int32___System_Int32_Microsoft_Xna_Framework_Point___
2023-10-11 16:05:32 +02:00
name : FenceWall
nameWithType : FenceWall.FenceWall
fullName : TinyLife.Objects.FenceWall.FenceWall
nameWithType.vb : FenceWall.New
fullName.vb : TinyLife.Objects.FenceWall.New
name.vb : New
- uid : System.Int32
commentId : T:System.Int32
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int
nameWithType : int
fullName : int
nameWithType.vb : Integer
fullName.vb : Integer
name.vb : Integer
- uid : Microsoft.Xna.Framework.Point[]
isExternal : true
name : Point[]
nameWithType : Point[]
fullName : Microsoft.Xna.Framework.Point[]
nameWithType.vb : Point()
fullName.vb : Microsoft.Xna.Framework.Point()
name.vb : Point()
spec.csharp :
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : '['
- name : ']'
spec.vb :
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : (
- name : )
2024-01-07 16:53:47 +01:00
- uid : TinyLife.World.Wall.Wallpapers
commentId : F:TinyLife.World.Wall.Wallpapers
href : TinyLife.World.Wall.html#TinyLife_World_Wall_Wallpapers
name : Wallpapers
nameWithType : Wall.Wallpapers
fullName : TinyLife.World.Wall.Wallpapers
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
commentId : M:TinyLife.Objects.WallLike.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
parent : TinyLife.Objects.WallLike
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Draw_TinyLife_World_Map_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Boolean_
2023-10-11 16:05:32 +02:00
name : Draw(Map, GameTime, SpriteBatch, Vector2, Color?, bool, bool)
nameWithType : WallLike.Draw(Map, GameTime, SpriteBatch, Vector2, Color?, bool, bool)
fullName : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map, Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, bool, bool)
nameWithType.vb : WallLike.Draw(Map, GameTime, SpriteBatch, Vector2, Color?, Boolean, Boolean)
fullName.vb : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map, Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, Boolean, Boolean)
name.vb : Draw(Map, GameTime, SpriteBatch, Vector2, Color?, Boolean, Boolean)
spec.csharp :
- uid : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
name : Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Draw_TinyLife_World_Map_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Boolean_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Graphics.SpriteBatch
name : SpriteBatch
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
- name : '?'
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.Draw(TinyLife.World.Map,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Boolean)
name : Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Draw_TinyLife_World_Map_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Boolean_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Graphics.SpriteBatch
name : SpriteBatch
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
- name : '?'
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
- uid : TinyLife.Objects.FenceWall.Draw*
commentId : Overload:TinyLife.Objects.FenceWall.Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall_Draw_TinyLife_World_Map_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Boolean_
2023-10-11 16:05:32 +02:00
name : Draw
nameWithType : FenceWall.Draw
fullName : TinyLife.Objects.FenceWall.Draw
- uid : TinyLife.World.Map
commentId : T:TinyLife.World.Map
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
- uid : Microsoft.Xna.Framework.GameTime
commentId : T:Microsoft.Xna.Framework.GameTime
parent : Microsoft.Xna.Framework
isExternal : true
name : GameTime
nameWithType : GameTime
fullName : Microsoft.Xna.Framework.GameTime
- uid : Microsoft.Xna.Framework.Graphics.SpriteBatch
commentId : T:Microsoft.Xna.Framework.Graphics.SpriteBatch
parent : Microsoft.Xna.Framework.Graphics
isExternal : true
name : SpriteBatch
nameWithType : SpriteBatch
fullName : Microsoft.Xna.Framework.Graphics.SpriteBatch
- 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 : System.Nullable{Microsoft.Xna.Framework.Color}
commentId : T:System.Nullable{Microsoft.Xna.Framework.Color}
parent : System
definition : System.Nullable`1
name : Color?
nameWithType : Color?
fullName : Microsoft.Xna.Framework.Color?
spec.csharp :
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
- name : '?'
spec.vb :
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
- name : '?'
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- uid : Microsoft.Xna.Framework.Graphics
commentId : N : Microsoft.Xna.Framework.Graphics
isExternal : true
name : Microsoft.Xna.Framework.Graphics
nameWithType : Microsoft.Xna.Framework.Graphics
fullName : Microsoft.Xna.Framework.Graphics
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Graphics
name : Graphics
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework.Graphics
name : Graphics
isExternal : true
- uid : System.Nullable`1
commentId : T:System.Nullable`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
name : Nullable<T>
nameWithType : Nullable<T>
fullName : System.Nullable<T>
nameWithType.vb : Nullable(Of T)
fullName.vb : System.Nullable(Of T)
name.vb : Nullable(Of T)
spec.csharp :
- uid : System.Nullable`1
name : Nullable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
- name : T
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WallLike.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Objects.WallLike.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
parent : TinyLife.Objects.WallLike
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
name : Validate(Map, AppliedMigrations)
nameWithType : WallLike.Validate(Map, AppliedMigrations)
fullName : TinyLife.Objects.WallLike.Validate(TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WallLike.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WallLike.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2023-10-11 16:05:32 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.FenceWall.Validate*
commentId : Overload:TinyLife.Objects.FenceWall.Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2023-10-11 16:05:32 +02:00
name : Validate
nameWithType : FenceWall.Validate
fullName : TinyLife.Objects.FenceWall.Validate
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
commentId : T:TinyLife.Utilities.AppliedMigrations
parent : TinyLife.Utilities
href : TinyLife.Utilities.AppliedMigrations.html
name : AppliedMigrations
nameWithType : AppliedMigrations
fullName : TinyLife.Utilities.AppliedMigrations
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.WallLike.GetPrice
commentId : M:TinyLife.Objects.WallLike.GetPrice
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPrice
2023-10-11 16:05:32 +02:00
name : GetPrice()
nameWithType : WallLike.GetPrice()
fullName : TinyLife.Objects.WallLike.GetPrice()
spec.csharp :
- uid : TinyLife.Objects.WallLike.GetPrice
name : GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPrice
2023-10-11 16:05:32 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.GetPrice
name : GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_GetPrice
2023-10-11 16:05:32 +02:00
- name : (
- name : )
- uid : TinyLife.Objects.FenceWall.GetPrice*
commentId : Overload:TinyLife.Objects.FenceWall.GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall_GetPrice
2023-10-11 16:05:32 +02:00
name : GetPrice
nameWithType : FenceWall.GetPrice
fullName : TinyLife.Objects.FenceWall.GetPrice
- 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.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
commentId : M:TinyLife.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
parent : TinyLife.Objects.WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnNeighborChanged_TinyLife_World_Map_TinyLife_Objects_WallLike_
2023-10-11 16:05:32 +02:00
name : OnNeighborChanged(Map, WallLike)
nameWithType : WallLike.OnNeighborChanged(Map, WallLike)
fullName : TinyLife.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map, TinyLife.Objects.WallLike)
spec.csharp :
- uid : TinyLife.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
name : OnNeighborChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnNeighborChanged_TinyLife_World_Map_TinyLife_Objects_WallLike_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.WallLike
name : WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html
2023-10-11 16:05:32 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.WallLike.OnNeighborChanged(TinyLife.World.Map,TinyLife.Objects.WallLike)
name : OnNeighborChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html#TinyLife_Objects_WallLike_OnNeighborChanged_TinyLife_World_Map_TinyLife_Objects_WallLike_
2023-10-11 16:05:32 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.WallLike
name : WallLike
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WallLike.html
2023-10-11 16:05:32 +02:00
- name : )
- uid : TinyLife.Objects.FenceWall.OnNeighborChanged*
commentId : Overload:TinyLife.Objects.FenceWall.OnNeighborChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.FenceWall.html#TinyLife_Objects_FenceWall_OnNeighborChanged_TinyLife_World_Map_TinyLife_Objects_WallLike_
2023-10-11 16:05:32 +02:00
name : OnNeighborChanged
nameWithType : FenceWall.OnNeighborChanged
fullName : TinyLife.Objects.FenceWall.OnNeighborChanged