2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle
commentId : T:TinyLife.Objects.Vehicle
id : Vehicle
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects
children :
2023-10-11 16:05:32 +02:00
- TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.Vehicle.VehicleType)
2023-06-25 15:41:49 +02:00
- TinyLife.Objects.Vehicle.Action
2022-09-05 14:19:42 +02:00
- TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.Vehicle.Driver
2024-04-14 17:55:54 +02:00
- TinyLife.Objects.Vehicle.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
2023-10-11 16:05:32 +02:00
- TinyLife.Objects.Vehicle.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.Vehicle.GetSpeed
2024-07-26 12:47:59 +02:00
- TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.Vehicle.OnRemoved
2023-08-15 13:17:22 +02:00
- TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean,System.Boolean)
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.Vehicle.Rotation
- TinyLife.Objects.Vehicle.Type
2022-09-05 14:19:42 +02:00
- TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2021-10-14 20:30:40 +02:00
name : Vehicle
nameWithType : Vehicle
fullName : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : An instance of this class represents an object that can be, or is, part of a <xref href="TinyLife.Objects.MapObject.Map" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-10-14 20:30:40 +02:00
content: 'public class Vehicle : MapObject, IGenericDataHolder, IUpdatingObject'
2023-03-30 18:07:55 +02:00
content.vb : Public Class Vehicle Inherits MapObject Implements IGenericDataHolder, IUpdatingObject
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject
implements :
- MLEM.Misc.IGenericDataHolder
- TinyLife.Objects.IUpdatingObject
inheritedMembers :
- TinyLife.Objects.MapObject.PersonRotationOrder
- TinyLife.Objects.MapObject.OnCreated
- TinyLife.Objects.MapObject.OnValidated
2023-06-25 15:41:49 +02:00
- TinyLife.Objects.MapObject.OnValidatedEarly
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject.OnEventsAttachable
- TinyLife.Objects.MapObject.OnDraw
- TinyLife.Objects.MapObject.OnUpdate
2023-01-16 12:24:01 +01:00
- TinyLife.Objects.MapObject.OnGetHoverInfo
2024-04-14 17:55:54 +02:00
- TinyLife.Objects.MapObject.OnGetDebugLines
2022-05-24 13:36:05 +02:00
- TinyLife.Objects.MapObject.Position
2023-10-11 16:05:32 +02:00
- TinyLife.Objects.MapObject.Floor
2022-05-24 13:36:05 +02:00
- TinyLife.Objects.MapObject.ParentInfo
2022-07-28 14:58:38 +02:00
- TinyLife.Objects.MapObject.Visibility
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject.Id
- TinyLife.Objects.MapObject.Map
- TinyLife.Objects.MapObject.CurrentLot
2022-07-04 16:50:43 +02:00
- TinyLife.Objects.MapObject.CurrentRoom
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject.IsInWorld
2023-03-30 18:07:55 +02:00
- TinyLife.Objects.MapObject.HoldingPerson
2024-07-26 12:47:59 +02:00
- TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
2023-06-25 15:41:49 +02:00
- TinyLife.Objects.MapObject.ValidateEarly
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
2024-06-09 17:05:30 +02:00
- TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject.OnAdded
2024-06-09 17:05:30 +02:00
- TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2022-03-09 16:13:05 +01:00
- TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean)
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
2022-09-05 14:19:42 +02:00
- TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)
2024-07-09 18:54:47 +02:00
- TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2023-07-20 14:27:20 +02:00
- TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map,TinyLife.World.Map)
- TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Collections.Generic.List{System.String})
2024-06-09 17:05:30 +02:00
- TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single)
- TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Random,System.Boolean,System.Collections.Generic.Dictionary{TinyLife.Skills.Quality,System.Single})
- TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType)
2022-12-20 13:25:03 +01:00
- TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
- TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
2024-07-26 12:47:59 +02:00
- TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Nullable{System.Single})
2023-10-11 16:05:32 +02:00
- TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2,System.Single)
2024-07-09 18:54:47 +02:00
- TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2024-07-09 18:54:47 +02:00
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2022-09-05 14:19:42 +02:00
- TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime,System.Object,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
- TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2024-07-09 18:54:47 +02:00
- TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean,TinyLife.Objects.ParentInfo,System.Single,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Boolean)
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.MapObject.GetModCategory(System.String)
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
- 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 :
2021-10-14 20:30:40 +02:00
- TinyLife.Objects.Vehicle.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Objects.Vehicle.Rotation
commentId : F:TinyLife.Objects.Vehicle.Rotation
2021-08-04 06:51:12 +02:00
id : Rotation
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Rotation
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.Rotation
fullName : TinyLife.Objects.Vehicle.Rotation
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The rotation that this car has
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public Direction2 Rotation
return :
2024-07-26 12:47:59 +02:00
type : MLEM.Maths.Direction2
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataMember>
Public Rotation As Direction2
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.Driver
commentId : F:TinyLife.Objects.Vehicle.Driver
2021-08-04 06:51:12 +02:00
id : Driver
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Driver
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.Driver
fullName : TinyLife.Objects.Vehicle.Driver
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The id of the person driving the car
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public Guid Driver
return :
type : System.Guid
content.vb : >-
<DataMember>
Public Driver As Guid
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2023-06-25 15:41:49 +02:00
- uid : TinyLife.Objects.Vehicle.Action
commentId : F:TinyLife.Objects.Vehicle.Action
id : Action
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : Action
nameWithType : Vehicle.Action
fullName : TinyLife.Objects.Vehicle.Action
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The id of the drive action.
2023-06-25 15:41:49 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public Guid Action
return :
type : System.Guid
content.vb : >-
<DataMember>
Public Action As Guid
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.Type
commentId : F:TinyLife.Objects.Vehicle.Type
id : Type
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : Type
nameWithType : Vehicle.Type
fullName : TinyLife.Objects.Vehicle.Type
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The type that this vehicle has
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public Vehicle.VehicleType Type
return :
type : TinyLife.Objects.Vehicle.VehicleType
content.vb : >-
<DataMember>
Public Type As Vehicle.VehicleType
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.Vehicle.VehicleType)
commentId : M:TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.Vehicle.VehicleType)
id : '#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.Vehicle.VehicleType)'
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2023-10-11 16:05:32 +02:00
name : Vehicle(Guid, Map, Vector2, float, VehicleType)
nameWithType : Vehicle.Vehicle(Guid, Map, Vector2, float, Vehicle.VehicleType)
fullName : TinyLife.Objects.Vehicle.Vehicle(System.Guid, TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, float, TinyLife.Objects.Vehicle.VehicleType)
2021-08-04 06:51:12 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Objects
example : [ ]
syntax :
2023-10-11 16:05:32 +02:00
content : public Vehicle(Guid id, Map map, Vector2 position, float floor, Vehicle.VehicleType type)
2021-08-04 06:51:12 +02:00
parameters :
- id : id
type : System.Guid
- id : map
type : TinyLife.World.Map
- id : position
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Vector2
2023-10-11 16:05:32 +02:00
- id : floor
type : System.Single
2021-10-14 20:30:40 +02:00
- id : type
type : TinyLife.Objects.Vehicle.VehicleType
2023-10-11 16:05:32 +02:00
content.vb : Public Sub New(id As Guid, map As Map, position As Vector2, floor As Single, type As Vehicle.VehicleType)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Objects.Vehicle.#ctor*
2023-10-11 16:05:32 +02:00
nameWithType.vb : Vehicle.New(Guid, Map, Vector2, Single, Vehicle.VehicleType)
fullName.vb : TinyLife.Objects.Vehicle.New(System.Guid, TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, Single, TinyLife.Objects.Vehicle.VehicleType)
name.vb : New(Guid, Map, Vector2, Single, VehicleType)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.GetSpeed
commentId : M:TinyLife.Objects.Vehicle.GetSpeed
id : GetSpeed
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : GetSpeed()
nameWithType : Vehicle.GetSpeed()
fullName : TinyLife.Objects.Vehicle.GetSpeed()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Returns the speed that this vehicle has
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual float GetSpeed()
return :
type : System.Single
2024-01-07 16:53:47 +01:00
description : This vehicle's speed
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Function GetSpeed() As Single
2021-10-14 20:30:40 +02:00
overload : TinyLife.Objects.Vehicle.GetSpeed*
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id : Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : Vehicle.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
The update method, which is called every update frame by the underlying <xref href="TinyLife.World.Map" data-throw-if-not-resolved="false"></xref>, as well as additional places like the <xref href="TinyLife.World.Household.FurnitureStorage" data-throw-if-not-resolved="false"></xref>. Because of this, some actions might only want to be invoked if an object <xref href="TinyLife.Objects.MapObject.IsInWorld" data-throw-if-not-resolved="false"></xref>.
To call this method while invoking all required events, use <xref href="TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-11-26 23:42:22 +01:00
content : public virtual void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
2021-08-04 06:51:12 +02:00
parameters :
- id : time
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.GameTime
2024-01-07 16:53:47 +01:00
description : The game's time
2021-08-04 06:51:12 +02:00
- id : passedInGame
type : System.TimeSpan
2022-01-08 12:41:09 +01:00
description : The amount of time that has passed since the last call
2021-11-26 23:42:22 +01:00
- id : speedMultiplier
type : System.Single
2022-01-08 12:41:09 +01:00
description : The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
2021-11-26 23:42:22 +01:00
content.vb : Public Overridable Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Objects.Vehicle.Update*
2021-08-04 06:51:12 +02:00
implements :
2022-09-05 14:19:42 +02:00
- TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2023-03-30 18:07:55 +02:00
nameWithType.vb : Vehicle.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
commentId : M:TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
id : Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Draw(GameTime, object, Vector2, Color?, List<Item>)
nameWithType : Vehicle.Draw(GameTime, object, Vector2, Color?, List<StaticSpriteBatch.Item>)
fullName : TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List<MLEM.Graphics.StaticSpriteBatch.Item>)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
Draws this object on the current <xref href="TinyLife.Objects.MapObject.Map" data-throw-if-not-resolved="false"></xref>, at the current <xref href="TinyLife.Objects.MapObject.Position" data-throw-if-not-resolved="false"></xref>.
To draw a map object while invoking all the required events, use <xref href="TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime%2cSystem.Object%2cSystem.Nullable%7bMicrosoft.Xna.Framework.Color%7d%2cSystem.Boolean%2cSystem.Collections.Generic.List%7bMLEM.Graphics.StaticSpriteBatch.Item%7d)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-09-05 14:19:42 +02:00
content : public override void Draw(GameTime time, object batch, Vector2 drawPos, Color? overrideColor, List<StaticSpriteBatch.Item> items)
2021-08-04 06:51:12 +02:00
parameters :
- id : time
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.GameTime
description : The current time
2021-08-04 06:51:12 +02:00
- id : batch
2022-09-05 14:19:42 +02:00
type : System.Object
description : The sprite batch to use for drawing, which is either a <xref href="Microsoft.Xna.Framework.Graphics.SpriteBatch" data-throw-if-not-resolved="false"></xref> or <xref href="MLEM.Graphics.StaticSpriteBatch" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
- id : drawPos
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Vector2
description : The position, in draw space, to draw this furniture at
2021-08-04 06:51:12 +02:00
- id : overrideColor
2022-09-05 14:19:42 +02:00
type : System.Nullable{Microsoft.Xna.Framework.Color}
2024-01-07 16:53:47 +01:00
description : The color that should be used instead of this object's actual color. If null, the object's regular color should be used.
2022-09-05 14:19:42 +02:00
- id : items
type : System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item}
2024-01-07 16:53:47 +01:00
description : A list of sprite batch items that items should be added to if the <code class="paramref">batch</code> is a <xref href="MLEM.Graphics.StaticSpriteBatch" data-throw-if-not-resolved="false"></xref>.
2022-09-05 14:19:42 +02:00
content.vb : Public Overrides Sub Draw(time As GameTime, batch As Object, drawPos As Vector2, overrideColor As Color?, items As List(Of StaticSpriteBatch.Item))
overridden : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2021-10-14 20:30:40 +02:00
overload : TinyLife.Objects.Vehicle.Draw*
2023-03-30 18:07:55 +02:00
nameWithType.vb : Vehicle.Draw(GameTime, Object, Vector2, Color?, List(Of StaticSpriteBatch.Item))
fullName.vb : TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime, Object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item))
name.vb : Draw(GameTime, Object, Vector2, Color?, List(Of Item))
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
commentId : M:TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
id : OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.Vehicle
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : OnCameraRotationChanged(Direction2, Direction2)
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.OnCameraRotationChanged(Direction2, Direction2)
2024-07-26 12:47:59 +02:00
fullName : TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Maths.Direction2, MLEM.Maths.Direction2)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
This method is invoked when the game's camera rotation changes.
Additionally, the old and new rotations are passed.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public override void OnCameraRotationChanged(Direction2 oldRotation, Direction2 newRotation)
parameters :
- id : oldRotation
2024-07-26 12:47:59 +02:00
type : MLEM.Maths.Direction2
2022-01-08 12:41:09 +01:00
description : The old camera rotation
2021-08-04 06:51:12 +02:00
- id : newRotation
2024-07-26 12:47:59 +02:00
type : MLEM.Maths.Direction2
2022-01-08 12:41:09 +01:00
description : The new camera rotation
2021-08-04 06:51:12 +02:00
content.vb : Public Overrides Sub OnCameraRotationChanged(oldRotation As Direction2, newRotation As Direction2)
2024-07-26 12:47:59 +02:00
overridden : TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Objects.Vehicle.OnCameraRotationChanged*
- uid : TinyLife.Objects.Vehicle.OnRemoved
commentId : M:TinyLife.Objects.Vehicle.OnRemoved
id : OnRemoved
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : OnRemoved()
nameWithType : Vehicle.OnRemoved()
fullName : TinyLife.Objects.Vehicle.OnRemoved()
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 removed from a <xref href="TinyLife.Objects.MapObject.Map" data-throw-if-not-resolved="false"></xref>.
By default, it does nothing.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public override void OnRemoved()
2023-03-30 18:07:55 +02:00
content.vb : Public Overrides Sub OnRemoved()
2021-10-14 20:30:40 +02:00
overridden : TinyLife.Objects.MapObject.OnRemoved
overload : TinyLife.Objects.Vehicle.OnRemoved*
2023-08-15 13:17:22 +02:00
- uid : TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean,System.Boolean)
commentId : M:TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean,System.Boolean)
id : ResetToStatic(System.Boolean,System.Boolean)
2023-01-19 11:28:13 +01:00
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
2023-08-15 13:17:22 +02:00
name : ResetToStatic(bool, bool)
nameWithType : Vehicle.ResetToStatic(bool, bool)
fullName : TinyLife.Objects.Vehicle.ResetToStatic(bool, bool)
2023-01-19 11:28:13 +01:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Resets this map object to a static state when the <xref href="TinyLife.Objects.MapObject.Map" data-throw-if-not-resolved="false"></xref> that is on is exported.
2023-01-19 11:28:13 +01:00
example : [ ]
syntax :
2023-08-15 13:17:22 +02:00
content : public override bool ResetToStatic(bool thorough, bool custom)
2023-01-19 11:28:13 +01:00
parameters :
- id : thorough
type : System.Boolean
2023-04-26 14:51:19 +02:00
description : Whether a more thorough reset is expected, which usually involves normalizing additional data and cleaning up player data entirely.
2023-08-15 13:17:22 +02:00
- id : custom
type : System.Boolean
description : Whether the static reset is happening in a custom context, that is, a <xref href="TinyLife.World.Household" data-throw-if-not-resolved="false"></xref> being exported normally rather than through cheats, or a custom <xref href="TinyLife.Objects.MapObject.Map" data-throw-if-not-resolved="false"></xref> being exported.
2023-01-19 11:28:13 +01:00
return :
type : System.Boolean
2023-04-26 14:51:19 +02:00
description : Whether this object should stay on the map after the static reset. If <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a> is returned, this object is removed.
2023-08-15 13:17:22 +02:00
content.vb : Public Overrides Function ResetToStatic(thorough As Boolean, custom As Boolean) As Boolean
overridden : TinyLife.Objects.MapObject.ResetToStatic(System.Boolean,System.Boolean)
2023-01-19 11:28:13 +01:00
overload : TinyLife.Objects.Vehicle.ResetToStatic*
2023-08-15 13:17:22 +02:00
nameWithType.vb : Vehicle.ResetToStatic(Boolean, Boolean)
fullName.vb : TinyLife.Objects.Vehicle.ResetToStatic(Boolean, Boolean)
name.vb : ResetToStatic(Boolean, Boolean)
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.Vehicle.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
commentId : M:TinyLife.Objects.Vehicle.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
id : GetHoverInfo(MLEM.Ui.Elements.Tooltip)
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : GetHoverInfo(Tooltip)
nameWithType : Vehicle.GetHoverInfo(Tooltip)
fullName : TinyLife.Objects.Vehicle.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
Allows adding a set of paragraphs and other ui elements to the given <code class="paramref">tooltip</code>, which is then displayed when this object is hovered over using the cursor in the world.
2024-06-09 17:05:30 +02:00
By default, this method raises <xref href="TinyLife.Objects.MapObject.OnGetHoverInfo" data-throw-if-not-resolved="false"></xref> for <xref href="TinyLife.Objects.MapObject" data-throw-if-not-resolved="false"></xref>, and adds additional information for <xref href="TinyLife.Objects.Furniture" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref>.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : public override void GetHoverInfo(Tooltip tooltip)
parameters :
- id : tooltip
type : MLEM.Ui.Elements.Tooltip
description : The tooltip that will be displayed.
content.vb : Public Overrides Sub GetHoverInfo(tooltip As Tooltip)
overridden : TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
overload : TinyLife.Objects.Vehicle.GetHoverInfo*
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Objects.Vehicle.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
commentId : M:TinyLife.Objects.Vehicle.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
id : GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
parent : TinyLife.Objects.Vehicle
langs :
- csharp
- vb
name : GetDebugLines(GameImpl, List<string>)
nameWithType : Vehicle.GetDebugLines(GameImpl, List<string>)
fullName : TinyLife.Objects.Vehicle.GetDebugLines(TinyLife.GameImpl, System.Collections.Generic.List<string>)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
summary : >-
Returns the debug lines that should be displayed in <xref href="TinyLife.Debug" data-throw-if-not-resolved="false"></xref> when hovering over this object.
By default, <xref href="TinyLife.Objects.MapObject.OnGetDebugLines" data-throw-if-not-resolved="false"></xref> is invoked, and the id and position of this object are appended to the list of lines.
example : [ ]
syntax :
content : public override void GetDebugLines(GameImpl game, List<string> lines)
parameters :
- id : game
type : TinyLife.GameImpl
description : The game.
- id : lines
type : System.Collections.Generic.List{System.String}
description : The list of lines to append debug lines to.
content.vb : Public Overrides Sub GetDebugLines(game As GameImpl, lines As List(Of String))
overridden : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
overload : TinyLife.Objects.Vehicle.GetDebugLines*
nameWithType.vb : Vehicle.GetDebugLines(GameImpl, List(Of String))
fullName.vb : TinyLife.Objects.Vehicle.GetDebugLines(TinyLife.GameImpl, System.Collections.Generic.List(Of String))
name.vb : GetDebugLines(GameImpl, List(Of String))
2021-08-04 06:51:12 +02:00
references :
2024-01-07 16:53:47 +01:00
- uid : TinyLife.Objects.MapObject.Map
commentId : P:TinyLife.Objects.MapObject.Map
parent : TinyLife.Objects.MapObject
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Map
name : Map
nameWithType : MapObject.Map
fullName : TinyLife.Objects.MapObject.Map
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2021-08-04 06:51:12 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
2021-08-04 06:51:12 +02:00
isExternal : true
2021-11-23 16:24:04 +01:00
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2024-01-07 16:53:47 +01:00
- uid : TinyLife.Objects.MapObject
commentId : T:TinyLife.Objects.MapObject
parent : TinyLife.Objects
href : TinyLife.Objects.MapObject.html
name : MapObject
nameWithType : MapObject
fullName : TinyLife.Objects.MapObject
2021-08-04 06:51:12 +02:00
- 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.IUpdatingObject
commentId : T:TinyLife.Objects.IUpdatingObject
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.IUpdatingObject.html
2021-08-04 06:51:12 +02:00
name : IUpdatingObject
nameWithType : IUpdatingObject
fullName : TinyLife.Objects.IUpdatingObject
- uid : TinyLife.Objects.MapObject.PersonRotationOrder
commentId : F:TinyLife.Objects.MapObject.PersonRotationOrder
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_PersonRotationOrder
2021-08-04 06:51:12 +02:00
name : PersonRotationOrder
nameWithType : MapObject.PersonRotationOrder
fullName : TinyLife.Objects.MapObject.PersonRotationOrder
- uid : TinyLife.Objects.MapObject.OnCreated
commentId : E:TinyLife.Objects.MapObject.OnCreated
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCreated
2021-08-04 06:51:12 +02:00
name : OnCreated
nameWithType : MapObject.OnCreated
fullName : TinyLife.Objects.MapObject.OnCreated
- uid : TinyLife.Objects.MapObject.OnValidated
commentId : E:TinyLife.Objects.MapObject.OnValidated
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnValidated
2021-08-04 06:51:12 +02:00
name : OnValidated
nameWithType : MapObject.OnValidated
fullName : TinyLife.Objects.MapObject.OnValidated
2023-06-25 15:41:49 +02:00
- uid : TinyLife.Objects.MapObject.OnValidatedEarly
commentId : E:TinyLife.Objects.MapObject.OnValidatedEarly
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnValidatedEarly
2023-06-25 15:41:49 +02:00
name : OnValidatedEarly
nameWithType : MapObject.OnValidatedEarly
fullName : TinyLife.Objects.MapObject.OnValidatedEarly
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.MapObject.OnEventsAttachable
commentId : E:TinyLife.Objects.MapObject.OnEventsAttachable
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnEventsAttachable
2021-08-04 06:51:12 +02:00
name : OnEventsAttachable
nameWithType : MapObject.OnEventsAttachable
fullName : TinyLife.Objects.MapObject.OnEventsAttachable
- uid : TinyLife.Objects.MapObject.OnDraw
commentId : E:TinyLife.Objects.MapObject.OnDraw
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnDraw
2021-08-04 06:51:12 +02:00
name : OnDraw
nameWithType : MapObject.OnDraw
fullName : TinyLife.Objects.MapObject.OnDraw
- uid : TinyLife.Objects.MapObject.OnUpdate
commentId : E:TinyLife.Objects.MapObject.OnUpdate
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnUpdate
2021-08-04 06:51:12 +02:00
name : OnUpdate
nameWithType : MapObject.OnUpdate
fullName : TinyLife.Objects.MapObject.OnUpdate
2023-01-16 12:24:01 +01:00
- uid : TinyLife.Objects.MapObject.OnGetHoverInfo
commentId : E:TinyLife.Objects.MapObject.OnGetHoverInfo
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnGetHoverInfo
2023-01-16 12:24:01 +01:00
name : OnGetHoverInfo
nameWithType : MapObject.OnGetHoverInfo
fullName : TinyLife.Objects.MapObject.OnGetHoverInfo
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Objects.MapObject.OnGetDebugLines
commentId : E:TinyLife.Objects.MapObject.OnGetDebugLines
parent : TinyLife.Objects.MapObject
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnGetDebugLines
name : OnGetDebugLines
nameWithType : MapObject.OnGetDebugLines
fullName : TinyLife.Objects.MapObject.OnGetDebugLines
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.MapObject.Position
commentId : P:TinyLife.Objects.MapObject.Position
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Position
2022-05-24 13:36:05 +02:00
name : Position
nameWithType : MapObject.Position
fullName : TinyLife.Objects.MapObject.Position
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.MapObject.Floor
commentId : P:TinyLife.Objects.MapObject.Floor
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Floor
2023-10-11 16:05:32 +02:00
name : Floor
nameWithType : MapObject.Floor
fullName : TinyLife.Objects.MapObject.Floor
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.MapObject.ParentInfo
commentId : P:TinyLife.Objects.MapObject.ParentInfo
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ParentInfo
2022-05-24 13:36:05 +02:00
name : ParentInfo
nameWithType : MapObject.ParentInfo
fullName : TinyLife.Objects.MapObject.ParentInfo
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.MapObject.Visibility
commentId : P:TinyLife.Objects.MapObject.Visibility
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Visibility
2022-07-28 14:58:38 +02:00
name : Visibility
nameWithType : MapObject.Visibility
fullName : TinyLife.Objects.MapObject.Visibility
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.MapObject.Id
commentId : P:TinyLife.Objects.MapObject.Id
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Id
2021-08-04 06:51:12 +02:00
name : Id
nameWithType : MapObject.Id
fullName : TinyLife.Objects.MapObject.Id
- uid : TinyLife.Objects.MapObject.CurrentLot
commentId : P:TinyLife.Objects.MapObject.CurrentLot
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_CurrentLot
2021-08-04 06:51:12 +02:00
name : CurrentLot
nameWithType : MapObject.CurrentLot
fullName : TinyLife.Objects.MapObject.CurrentLot
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects.MapObject.CurrentRoom
commentId : P:TinyLife.Objects.MapObject.CurrentRoom
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_CurrentRoom
2022-07-04 16:50:43 +02:00
name : CurrentRoom
nameWithType : MapObject.CurrentRoom
fullName : TinyLife.Objects.MapObject.CurrentRoom
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.MapObject.IsInWorld
commentId : P:TinyLife.Objects.MapObject.IsInWorld
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_IsInWorld
2021-08-04 06:51:12 +02:00
name : IsInWorld
nameWithType : MapObject.IsInWorld
fullName : TinyLife.Objects.MapObject.IsInWorld
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Objects.MapObject.HoldingPerson
commentId : P:TinyLife.Objects.MapObject.HoldingPerson
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_HoldingPerson
2023-03-30 18:07:55 +02:00
name : HoldingPerson
nameWithType : MapObject.HoldingPerson
fullName : TinyLife.Objects.MapObject.HoldingPerson
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
commentId : M:TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Intersects_MLEM_Maths_RectangleF_
2021-08-04 06:51:12 +02:00
name : Intersects(RectangleF)
nameWithType : MapObject.Intersects(RectangleF)
2024-07-26 12:47:59 +02:00
fullName : TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
2021-08-04 06:51:12 +02:00
name : Intersects
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Intersects_MLEM_Maths_RectangleF_
2021-08-04 06:51:12 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.RectangleF
2021-08-04 06:51:12 +02:00
name : RectangleF
isExternal : true
- name : )
spec.vb :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.Intersects(MLEM.Maths.RectangleF)
2021-08-04 06:51:12 +02:00
name : Intersects
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Intersects_MLEM_Maths_RectangleF_
2021-08-04 06:51:12 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.RectangleF
2021-08-04 06:51:12 +02:00
name : RectangleF
isExternal : true
- name : )
2023-06-25 15:41:49 +02:00
- uid : TinyLife.Objects.MapObject.ValidateEarly
commentId : M:TinyLife.Objects.MapObject.ValidateEarly
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ValidateEarly
2023-06-25 15:41:49 +02:00
name : ValidateEarly()
nameWithType : MapObject.ValidateEarly()
fullName : TinyLife.Objects.MapObject.ValidateEarly()
spec.csharp :
- uid : TinyLife.Objects.MapObject.ValidateEarly
name : ValidateEarly
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ValidateEarly
2023-06-25 15:41:49 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.ValidateEarly
name : ValidateEarly
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ValidateEarly
2023-06-25 15:41:49 +02:00
- name : (
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
2023-06-25 15:41:49 +02:00
parent : TinyLife.Objects.MapObject
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Validate_TinyLife_Utilities_AppliedMigrations_
name : Validate(AppliedMigrations)
nameWithType : MapObject.Validate(AppliedMigrations)
fullName : TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
2023-06-25 15:41:49 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
2023-06-25 15:41:49 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Validate_TinyLife_Utilities_AppliedMigrations_
2023-06-25 15:41:49 +02:00
- name : (
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-06-25 15:41:49 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.Validate(TinyLife.Utilities.AppliedMigrations)
2023-06-25 15:41:49 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Validate_TinyLife_Utilities_AppliedMigrations_
2023-06-25 15:41:49 +02:00
- name : (
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-06-25 15:41:49 +02:00
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
commentId : M:TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetCategories_TinyLife_Objects_PersonLike_
name : GetCategories(PersonLike)
nameWithType : MapObject.GetCategories(PersonLike)
fullName : TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
2021-08-04 06:51:12 +02:00
name : GetCategories
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetCategories_TinyLife_Objects_PersonLike_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.PersonLike)
2021-08-04 06:51:12 +02:00
name : GetCategories
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetCategories_TinyLife_Objects_PersonLike_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2021-08-04 06:51:12 +02:00
- name : )
- uid : TinyLife.Objects.MapObject.OnAdded
commentId : M:TinyLife.Objects.MapObject.OnAdded
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnAdded
2021-08-04 06:51:12 +02:00
name : OnAdded()
nameWithType : MapObject.OnAdded()
fullName : TinyLife.Objects.MapObject.OnAdded()
spec.csharp :
- uid : TinyLife.Objects.MapObject.OnAdded
name : OnAdded
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnAdded
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.OnAdded
name : OnAdded
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnAdded
2021-08-04 06:51:12 +02:00
- name : (
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
commentId : M:TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetAiPriority_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
name : GetAiPriority(PersonLike, ObjectCategory)
nameWithType : MapObject.GetAiPriority(PersonLike, ObjectCategory)
fullName : TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike, TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
name : GetAiPriority
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetAiPriority_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ObjectCategory.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
name : GetAiPriority
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetAiPriority_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ObjectCategory.html
2021-08-04 06:51:12 +02:00
- name : )
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean)
commentId : M:TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean)
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Boolean_
2023-03-30 18:07:55 +02:00
name : CanExecuteAction(ActionType, ActionInfo, bool, bool)
nameWithType : MapObject.CanExecuteAction(ActionType, ActionInfo, bool, bool)
fullName : TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool, bool)
nameWithType.vb : MapObject.CanExecuteAction(ActionType, ActionInfo, Boolean, Boolean)
fullName.vb : TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean, Boolean)
name.vb : CanExecuteAction(ActionType, ActionInfo, Boolean, Boolean)
2022-03-09 16:13:05 +01:00
spec.csharp :
- uid : TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean)
name : CanExecuteAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Boolean_
2022-03-09 16:13:05 +01:00
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-03-09 16:13:05 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-03-09 16:13:05 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-03-09 16:13:05 +01:00
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean)
name : CanExecuteAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Boolean_
2022-03-09 16:13:05 +01:00
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-03-09 16:13:05 +01:00
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
commentId : M:TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnActionCompleted_TinyLife_Actions_Action_TinyLife_Actions_CompletionType_System_Boolean_
2023-03-30 18:07:55 +02:00
name : OnActionCompleted(Action, CompletionType, bool)
nameWithType : MapObject.OnActionCompleted(Action, CompletionType, bool)
fullName : TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action, TinyLife.Actions.CompletionType, bool)
nameWithType.vb : MapObject.OnActionCompleted(Action, CompletionType, Boolean)
fullName.vb : TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action, TinyLife.Actions.CompletionType, Boolean)
name.vb : OnActionCompleted(Action, CompletionType, Boolean)
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
2021-08-04 06:51:12 +02:00
name : OnActionCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnActionCompleted_TinyLife_Actions_Action_TinyLife_Actions_CompletionType_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
2021-08-04 06:51:12 +02:00
name : OnActionCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnActionCompleted_TinyLife_Actions_Action_TinyLife_Actions_CompletionType_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)
commentId : M:TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ActionUpdate_TinyLife_Actions_Action_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_System_Boolean_
2023-03-30 18:07:55 +02:00
name : ActionUpdate(Action, GameTime, TimeSpan, float, bool)
nameWithType : MapObject.ActionUpdate(Action, GameTime, TimeSpan, float, bool)
fullName : TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action, Microsoft.Xna.Framework.GameTime, System.TimeSpan, float, bool)
nameWithType.vb : MapObject.ActionUpdate(Action, GameTime, TimeSpan, Single, Boolean)
fullName.vb : TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action, Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single, Boolean)
name.vb : ActionUpdate(Action, GameTime, TimeSpan, Single, Boolean)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)
2021-08-04 06:51:12 +02:00
name : ActionUpdate
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ActionUpdate_TinyLife_Actions_Action_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-11-26 23:42:22 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)
2021-08-04 06:51:12 +02:00
name : ActionUpdate
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ActionUpdate_TinyLife_Actions_Action_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
commentId : M:TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
2024-07-09 18:54:47 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfos_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
name : GetFreeActionSpotInfos(PersonLike, ObjectCategory)
nameWithType : MapObject.GetFreeActionSpotInfos(PersonLike, ObjectCategory)
fullName : TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike, TinyLife.Objects.ObjectCategory)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : GetFreeActionSpotInfos
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfos_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ObjectCategory.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfos(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : GetFreeActionSpotInfos
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfos_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ObjectCategory.html
2021-08-04 06:51:12 +02:00
- name : )
2023-07-20 14:27:20 +02:00
- uid : TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map,TinyLife.World.Map)
commentId : M:TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map,TinyLife.World.Map)
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCurrentGameMapChanged_TinyLife_World_Map_TinyLife_World_Map_
2023-07-20 14:27:20 +02:00
name : OnCurrentGameMapChanged(Map, Map)
nameWithType : MapObject.OnCurrentGameMapChanged(Map, Map)
fullName : TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map, TinyLife.World.Map)
spec.csharp :
- uid : TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map,TinyLife.World.Map)
name : OnCurrentGameMapChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCurrentGameMapChanged_TinyLife_World_Map_TinyLife_World_Map_
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.OnCurrentGameMapChanged(TinyLife.World.Map,TinyLife.World.Map)
name : OnCurrentGameMapChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCurrentGameMapChanged_TinyLife_World_Map_TinyLife_World_Map_
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : )
- uid : TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Collections.Generic.List{System.String})
commentId : M:TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Collections.Generic.List{System.String})
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ModifyActionCategories_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Collections_Generic_List_System_String__
2023-07-20 14:27:20 +02:00
name : ModifyActionCategories(ActionType, ActionInfo, bool, List<string>)
nameWithType : MapObject.ModifyActionCategories(ActionType, ActionInfo, bool, List<string>)
fullName : TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool, System.Collections.Generic.List<string>)
nameWithType.vb : MapObject.ModifyActionCategories(ActionType, ActionInfo, Boolean, List(Of String))
fullName.vb : TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean, System.Collections.Generic.List(Of String))
name.vb : ModifyActionCategories(ActionType, ActionInfo, Boolean, List(Of String))
spec.csharp :
- uid : TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Collections.Generic.List{System.String})
name : ModifyActionCategories
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ModifyActionCategories_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Collections_Generic_List_System_String__
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : '>'
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.ModifyActionCategories(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Collections.Generic.List{System.String})
name : ModifyActionCategories
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ModifyActionCategories_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_System_Collections_Generic_List_System_String__
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single)
commentId : M:TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetEfficiencyModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Single_
name : GetEfficiencyModifier(PersonLike, ActionInfo, bool, SkillType, float)
nameWithType : MapObject.GetEfficiencyModifier(PersonLike, ActionInfo, bool, SkillType, float)
fullName : TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, bool, TinyLife.Skills.SkillType, float)
nameWithType.vb : MapObject.GetEfficiencyModifier(PersonLike, ActionInfo, Boolean, SkillType, Single)
fullName.vb : TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, Boolean, TinyLife.Skills.SkillType, Single)
name.vb : GetEfficiencyModifier(PersonLike, ActionInfo, Boolean, SkillType, Single)
2021-10-14 20:30:40 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
name : GetEfficiencyModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetEfficiencyModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Single_
2021-10-14 20:30:40 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
name : GetEfficiencyModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetEfficiencyModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Single_
2021-10-14 20:30:40 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-10-14 20:30:40 +02:00
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Random,System.Boolean,System.Collections.Generic.Dictionary{TinyLife.Skills.Quality,System.Single})
commentId : M:TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Random,System.Boolean,System.Collections.Generic.Dictionary{TinyLife.Skills.Quality,System.Single})
2024-02-02 18:13:42 +01:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRandomQuality_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Random_System_Boolean_System_Collections_Generic_Dictionary_TinyLife_Skills_Quality_System_Single__
name : OnRandomQuality(PersonLike, ActionInfo, bool, SkillType, Random, bool, Dictionary<Quality, float>)
nameWithType : MapObject.OnRandomQuality(PersonLike, ActionInfo, bool, SkillType, Random, bool, Dictionary<Quality, float>)
fullName : TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, bool, TinyLife.Skills.SkillType, System.Random, bool, System.Collections.Generic.Dictionary<TinyLife.Skills.Quality, float>)
nameWithType.vb : MapObject.OnRandomQuality(PersonLike, ActionInfo, Boolean, SkillType, Random, Boolean, Dictionary(Of Quality, Single))
fullName.vb : TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, Boolean, TinyLife.Skills.SkillType, System.Random, Boolean, System.Collections.Generic.Dictionary(Of TinyLife.Skills.Quality, Single))
name.vb : OnRandomQuality(PersonLike, ActionInfo, Boolean, SkillType, Random, Boolean, Dictionary(Of Quality, Single))
2024-02-02 18:13:42 +01:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Random,System.Boolean,System.Collections.Generic.Dictionary{TinyLife.Skills.Quality,System.Single})
2024-02-02 18:13:42 +01:00
name : OnRandomQuality
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRandomQuality_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Random_System_Boolean_System_Collections_Generic_Dictionary_TinyLife_Skills_Quality_System_Single__
2024-02-02 18:13:42 +01:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-02-02 18:13:42 +01:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
href : TinyLife.Actions.ActionInfo.html
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
href : TinyLife.Skills.SkillType.html
- name : ','
- name : " "
- uid : System.Random
name : Random
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.random
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Collections.Generic.Dictionary`2
name : Dictionary
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name : <
- uid : TinyLife.Skills.Quality
name : Quality
href : TinyLife.Skills.Quality.html
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : '>'
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.OnRandomQuality(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Random,System.Boolean,System.Collections.Generic.Dictionary{TinyLife.Skills.Quality,System.Single})
2024-02-02 18:13:42 +01:00
name : OnRandomQuality
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRandomQuality_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Skills_SkillType_System_Random_System_Boolean_System_Collections_Generic_Dictionary_TinyLife_Skills_Quality_System_Single__
2024-02-02 18:13:42 +01:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-02-02 18:13:42 +01:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
href : TinyLife.Actions.ActionInfo.html
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
href : TinyLife.Skills.SkillType.html
- name : ','
- name : " "
- uid : System.Random
name : Random
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.random
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Collections.Generic.Dictionary`2
name : Dictionary
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name : (
- name : Of
- name : " "
- uid : TinyLife.Skills.Quality
name : Quality
href : TinyLife.Skills.Quality.html
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType)
commentId : M:TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType)
2022-06-09 20:12:10 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetRestoreNeedModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_NeedType_
name : GetRestoreNeedModifier(PersonLike, ActionInfo, bool, NeedType)
nameWithType : MapObject.GetRestoreNeedModifier(PersonLike, ActionInfo, bool, NeedType)
fullName : TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, bool, TinyLife.NeedType)
nameWithType.vb : MapObject.GetRestoreNeedModifier(PersonLike, ActionInfo, Boolean, NeedType)
fullName.vb : TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionInfo, Boolean, TinyLife.NeedType)
name.vb : GetRestoreNeedModifier(PersonLike, ActionInfo, Boolean, NeedType)
2022-06-09 20:12:10 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType)
2022-06-09 20:12:10 +02:00
name : GetRestoreNeedModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetRestoreNeedModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_NeedType_
2022-06-09 20:12:10 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-06-09 20:12:10 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.NeedType
name : NeedType
2024-01-07 16:53:47 +01:00
href : TinyLife.NeedType.html
2022-06-09 20:12:10 +02:00
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType)
2022-06-09 20:12:10 +02:00
name : GetRestoreNeedModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetRestoreNeedModifier_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_NeedType_
2022-06-09 20:12:10 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.NeedType
name : NeedType
2024-01-07 16:53:47 +01:00
href : TinyLife.NeedType.html
2022-06-09 20:12:10 +02:00
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_IsFreeSpot_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
name : IsFreeSpot(Point)
nameWithType : MapObject.IsFreeSpot(Point)
fullName : TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
name : IsFreeSpot
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_IsFreeSpot_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point)
name : IsFreeSpot
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_IsFreeSpot_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
- uid : TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
commentId : M:TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetPathCostModifier_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
name : GetPathCostModifier(Point)
nameWithType : MapObject.GetPathCostModifier(Point)
fullName : TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
spec.csharp :
- uid : TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
name : GetPathCostModifier
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetPathCostModifier_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
name : GetPathCostModifier
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetPathCostModifier_Microsoft_Xna_Framework_Point_
2022-12-20 13:25:03 +01:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
commentId : M:TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
parent : TinyLife.Objects.MapObject
isExternal : true
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawIcon_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_
name : DrawIcon(Element, GameTime, SpriteBatch)
nameWithType : MapObject.DrawIcon(Element, GameTime, SpriteBatch)
fullName : TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element, Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch)
spec.csharp :
- uid : TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
name : DrawIcon
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawIcon_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_
- name : (
- uid : MLEM.Ui.Elements.Element
name : Element
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Graphics.SpriteBatch
name : SpriteBatch
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.DrawIcon(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
name : DrawIcon
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawIcon_MLEM_Ui_Elements_Element_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_
- name : (
- uid : MLEM.Ui.Elements.Element
name : Element
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Graphics.SpriteBatch
name : SpriteBatch
isExternal : true
- name : )
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Nullable{System.Single})
commentId : M:TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Nullable{System.Single})
2023-07-20 14:27:20 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_MoveToMap_TinyLife_World_Map_System_Nullable_Microsoft_Xna_Framework_Vector2__System_Nullable_System_Single__
name : MoveToMap(Map, Vector2?, float?)
nameWithType : MapObject.MoveToMap(Map, Vector2?, float?)
fullName : TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2?, float?)
nameWithType.vb : MapObject.MoveToMap(Map, Vector2?, Single?)
fullName.vb : TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2?, Single?)
name.vb : MoveToMap(Map, Vector2?, Single?)
2023-07-20 14:27:20 +02:00
spec.csharp :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Nullable{System.Single})
2023-07-20 14:27:20 +02:00
name : MoveToMap
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_MoveToMap_TinyLife_World_Map_System_Nullable_Microsoft_Xna_Framework_Vector2__System_Nullable_System_Single__
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2024-07-26 12:47:59 +02:00
- name : '?'
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
2024-07-26 12:47:59 +02:00
- name : '?'
2023-07-20 14:27:20 +02:00
- name : )
spec.vb :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Nullable{System.Single})
2023-07-20 14:27:20 +02:00
name : MoveToMap
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_MoveToMap_TinyLife_World_Map_System_Nullable_Microsoft_Xna_Framework_Vector2__System_Nullable_System_Single__
2023-07-20 14:27:20 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : ','
- name : " "
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2024-07-26 12:47:59 +02:00
- name : '?'
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
2024-07-26 12:47:59 +02:00
- name : '?'
2023-07-20 14:27:20 +02:00
- name : )
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2,System.Single)
commentId : M:TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2,System.Single)
2023-03-30 18:07:55 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnPositionChanged_Microsoft_Xna_Framework_Vector2_System_Single_
2023-10-11 16:05:32 +02:00
name : OnPositionChanged(Vector2, float)
nameWithType : MapObject.OnPositionChanged(Vector2, float)
fullName : TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2, float)
nameWithType.vb : MapObject.OnPositionChanged(Vector2, Single)
fullName.vb : TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2, Single)
name.vb : OnPositionChanged(Vector2, Single)
2023-03-30 18:07:55 +02:00
spec.csharp :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2,System.Single)
2023-03-30 18:07:55 +02:00
name : OnPositionChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnPositionChanged_Microsoft_Xna_Framework_Vector2_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2,System.Single)
2023-03-30 18:07:55 +02:00
name : OnPositionChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnPositionChanged_Microsoft_Xna_Framework_Vector2_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
2023-03-30 18:07:55 +02:00
- name : )
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
commentId : M:TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
parent : TinyLife.Objects.MapObject
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfo_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
name : GetFreeActionSpotInfo(PersonLike, ObjectCategory)
nameWithType : MapObject.GetFreeActionSpotInfo(PersonLike, ObjectCategory)
fullName : TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike, TinyLife.Objects.ObjectCategory)
spec.csharp :
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : GetFreeActionSpotInfo
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfo_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
- name : (
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
- name : ','
- name : " "
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
href : TinyLife.Objects.ObjectCategory.html
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : GetFreeActionSpotInfo
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetFreeActionSpotInfo_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
- name : (
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
- name : ','
- name : " "
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
href : TinyLife.Objects.ObjectCategory.html
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2024-07-09 18:54:47 +02:00
parent : TinyLife.Objects.MapObject
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_SetMapAndValidate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
name : SetMapAndValidate(Map, AppliedMigrations)
nameWithType : MapObject.SetMapAndValidate(Map, AppliedMigrations)
fullName : TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
2024-07-09 18:54:47 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2024-07-09 18:54:47 +02:00
name : SetMapAndValidate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_SetMapAndValidate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2024-07-09 18:54:47 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
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
2024-07-09 18:54:47 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2024-07-09 18:54:47 +02:00
name : SetMapAndValidate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_SetMapAndValidate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2024-07-09 18:54:47 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
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
2024-07-09 18:54:47 +02:00
- name : )
- uid : TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
commentId : M:TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
parent : TinyLife.Objects.MapObject
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_HasCategory_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
name : HasCategory(PersonLike, ObjectCategory)
nameWithType : MapObject.HasCategory(PersonLike, ObjectCategory)
fullName : TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike, TinyLife.Objects.ObjectCategory)
spec.csharp :
- uid : TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : HasCategory
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_HasCategory_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
- name : (
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
- name : ','
- name : " "
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
href : TinyLife.Objects.ObjectCategory.html
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.PersonLike,TinyLife.Objects.ObjectCategory)
name : HasCategory
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_HasCategory_TinyLife_Objects_PersonLike_TinyLife_Objects_ObjectCategory_
- name : (
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
- name : ','
- name : " "
- uid : TinyLife.Objects.ObjectCategory
name : ObjectCategory
href : TinyLife.Objects.ObjectCategory.html
- name : )
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime,System.Object,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
commentId : M:TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime,System.Object,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2022-07-28 14:58:38 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoDraw_Microsoft_Xna_Framework_GameTime_System_Object_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2023-03-30 18:07:55 +02:00
name : DoDraw(GameTime, object, Color?, bool, List<Item>)
nameWithType : MapObject.DoDraw(GameTime, object, Color?, bool, List<StaticSpriteBatch.Item>)
fullName : TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Color?, bool, System.Collections.Generic.List<MLEM.Graphics.StaticSpriteBatch.Item>)
nameWithType.vb : MapObject.DoDraw(GameTime, Object, Color?, Boolean, List(Of StaticSpriteBatch.Item))
fullName.vb : TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime, Object, Microsoft.Xna.Framework.Color?, Boolean, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item))
name.vb : DoDraw(GameTime, Object, Color?, Boolean, List(Of Item))
2022-07-28 14:58:38 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime,System.Object,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2022-07-28 14:58:38 +02:00
name : DoDraw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoDraw_Microsoft_Xna_Framework_GameTime_System_Object_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2022-07-28 14:58:38 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2022-07-28 14:58:38 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-07-28 14:58:38 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
- name : <
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : '>'
2022-07-28 14:58:38 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime,System.Object,System.Nullable{Microsoft.Xna.Framework.Color},System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
2022-07-28 14:58:38 +02:00
name : DoDraw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoDraw_Microsoft_Xna_Framework_GameTime_System_Object_System_Nullable_Microsoft_Xna_Framework_Color__System_Boolean_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2022-07-28 14:58:38 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2022-07-28 14:58:38 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
name : Object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-07-28 14:58:38 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
2022-09-05 14:19:42 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : )
2022-07-28 14:58:38 +02:00
- name : )
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-07-28 14:58:38 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
name : DoUpdate(GameTime, TimeSpan, float)
nameWithType : MapObject.DoUpdate(GameTime, TimeSpan, float)
fullName : TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : MapObject.DoUpdate(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : DoUpdate(GameTime, TimeSpan, Single)
2022-07-28 14:58:38 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-07-28 14:58:38 +02:00
name : DoUpdate
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2022-07-28 14:58:38 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2022-07-28 14:58:38 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2022-07-28 14:58:38 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-07-28 14:58:38 +02:00
name : DoUpdate
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DoUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2022-07-28 14:58:38 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2022-07-28 14:58:38 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2022-07-28 14:58:38 +02:00
- name : )
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean,TinyLife.Objects.ParentInfo,System.Single,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Boolean)
commentId : M:TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean,TinyLife.Objects.ParentInfo,System.Single,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-07-09 18:54:47 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawColumns_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Single_System_Object_Microsoft_Xna_Framework_Vector2_MLEM_Textures_TextureRegion_Microsoft_Xna_Framework_Color_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Point_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__System_Boolean_TinyLife_Objects_ParentInfo_System_Single_Microsoft_Xna_Framework_Graphics_SpriteEffects_System_Boolean_
name : DrawColumns(Map, Vector2, float, object, Vector2, TextureRegion, Color, Vector2, Point, List<Item>, bool, ParentInfo, float, SpriteEffects, bool)
nameWithType : MapObject.DrawColumns(Map, Vector2, float, object, Vector2, TextureRegion, Color, Vector2, Point, List<StaticSpriteBatch.Item>, bool, ParentInfo, float, SpriteEffects, bool)
fullName : TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, float, object, Microsoft.Xna.Framework.Vector2, MLEM.Textures.TextureRegion, Microsoft.Xna.Framework.Color, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Point, System.Collections.Generic.List<MLEM.Graphics.StaticSpriteBatch.Item>, bool, TinyLife.Objects.ParentInfo, float, Microsoft.Xna.Framework.Graphics.SpriteEffects, bool)
nameWithType.vb : MapObject.DrawColumns(Map, Vector2, Single, Object, Vector2, TextureRegion, Color, Vector2, Point, List(Of StaticSpriteBatch.Item), Boolean, ParentInfo, Single, SpriteEffects, Boolean)
fullName.vb : TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, Single, Object, Microsoft.Xna.Framework.Vector2, MLEM.Textures.TextureRegion, Microsoft.Xna.Framework.Color, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Point, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item), Boolean, TinyLife.Objects.ParentInfo, Single, Microsoft.Xna.Framework.Graphics.SpriteEffects, Boolean)
name.vb : DrawColumns(Map, Vector2, Single, Object, Vector2, TextureRegion, Color, Vector2, Point, List(Of Item), Boolean, ParentInfo, Single, SpriteEffects, Boolean)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean,TinyLife.Objects.ParentInfo,System.Single,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Boolean)
2021-08-04 06:51:12 +02:00
name : DrawColumns
2024-07-09 18:54:47 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawColumns_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Single_System_Object_Microsoft_Xna_Framework_Vector2_MLEM_Textures_TextureRegion_Microsoft_Xna_Framework_Color_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Point_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__System_Boolean_TinyLife_Objects_ParentInfo_System_Single_Microsoft_Xna_Framework_Graphics_SpriteEffects_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2023-10-11 16:05:32 +02:00
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : MLEM.Textures.TextureRegion
name : TextureRegion
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-07-09 18:54:47 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
name : Point
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
- name : <
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : '>'
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.ParentInfo
name : ParentInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ParentInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Graphics.SpriteEffects
2022-07-04 16:50:43 +02:00
name : SpriteEffects
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2024-07-09 18:54:47 +02:00
- uid : TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean,TinyLife.Objects.ParentInfo,System.Single,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Boolean)
2021-08-04 06:51:12 +02:00
name : DrawColumns
2024-07-09 18:54:47 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_DrawColumns_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Single_System_Object_Microsoft_Xna_Framework_Vector2_MLEM_Textures_TextureRegion_Microsoft_Xna_Framework_Color_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Point_System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__System_Boolean_TinyLife_Objects_ParentInfo_System_Single_Microsoft_Xna_Framework_Graphics_SpriteEffects_System_Boolean_
2021-08-04 06:51:12 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2023-10-11 16:05:32 +02:00
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
name : Object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : MLEM.Textures.TextureRegion
name : TextureRegion
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-07-09 18:54:47 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
name : Point
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
2022-09-05 14:19:42 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : )
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.ParentInfo
name : ParentInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ParentInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Graphics.SpriteEffects
2022-07-04 16:50:43 +02:00
name : SpriteEffects
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-08-04 06:51:12 +02:00
- name : )
- uid : TinyLife.Objects.MapObject.GetModCategory(System.String)
commentId : M:TinyLife.Objects.MapObject.GetModCategory(System.String)
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetModCategory_System_String_
2023-03-30 18:07:55 +02:00
name : GetModCategory(string)
nameWithType : MapObject.GetModCategory(string)
fullName : TinyLife.Objects.MapObject.GetModCategory(string)
nameWithType.vb : MapObject.GetModCategory(String)
fullName.vb : TinyLife.Objects.MapObject.GetModCategory(String)
name.vb : GetModCategory(String)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : TinyLife.Objects.MapObject.GetModCategory(System.String)
name : GetModCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetModCategory_System_String_
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.GetModCategory(System.String)
name : GetModCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetModCategory_System_String_
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
2022-12-20 13:25:03 +01:00
- 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)
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
2021-11-23 16:24:04 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2021-08-04 06:51:12 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-08-04 06:51:12 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
name : GetDataKeys()
2021-11-23 16:24:04 +01:00
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.TinyLife.Utilities.Extensions.JsonCopy``1
2021-08-04 06:51:12 +02:00
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<Vehicle>(Vehicle)
nameWithType : Extensions.JsonCopy<Vehicle>(Vehicle)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.Vehicle>(TinyLife.Objects.Vehicle)
nameWithType.vb : Extensions.JsonCopy(Of Vehicle)(Vehicle)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.Vehicle)(TinyLife.Objects.Vehicle)
name.vb : JsonCopy(Of Vehicle)(Vehicle)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.Vehicle)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.Vehicle)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2021-08-04 06:51:12 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name : System
nameWithType : System
fullName : System
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
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
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
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
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-08-04 06:51:12 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.Direction2
commentId : T:MLEM.Maths.Direction2
parent : MLEM.Maths
2021-08-04 06:51:12 +02:00
isExternal : true
name : Direction2
nameWithType : Direction2
2024-07-26 12:47:59 +02:00
fullName : MLEM.Maths.Direction2
- uid : MLEM.Maths
commentId : N : MLEM.Maths
isExternal : true
name : MLEM.Maths
nameWithType : MLEM.Maths
fullName : MLEM.Maths
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Maths
name : Maths
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Maths
name : Maths
isExternal : true
2021-08-04 06:51:12 +02:00
- uid : System.Guid
commentId : T:System.Guid
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.guid
2021-08-04 06:51:12 +02:00
name : Guid
nameWithType : Guid
fullName : System.Guid
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.VehicleType
commentId : T:TinyLife.Objects.Vehicle.VehicleType
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2021-10-14 20:30:40 +02:00
name : Vehicle.VehicleType
nameWithType : Vehicle.VehicleType
fullName : TinyLife.Objects.Vehicle.VehicleType
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects.Vehicle.VehicleType
name : VehicleType
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.VehicleType.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife.Objects.Vehicle
name : Vehicle
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects.Vehicle.VehicleType
name : VehicleType
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.VehicleType.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.#ctor*
commentId : Overload:TinyLife.Objects.Vehicle.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle__ctor_System_Guid_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Single_TinyLife_Objects_Vehicle_VehicleType_
2021-10-14 20:30:40 +02:00
name : Vehicle
nameWithType : Vehicle.Vehicle
fullName : TinyLife.Objects.Vehicle.Vehicle
2023-03-30 18:07:55 +02:00
nameWithType.vb : Vehicle.New
fullName.vb : TinyLife.Objects.Vehicle.New
name.vb : New
2021-08-04 06:51:12 +02:00
- 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
2021-08-04 06:51:12 +02:00
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
commentId : T:Microsoft.Xna.Framework.Vector2
parent : Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal : true
name : Vector2
nameWithType : Vector2
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.Vector2
2023-10-11 16:05:32 +02:00
- 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
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World
commentId : N : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.GetSpeed*
commentId : Overload:TinyLife.Objects.Vehicle.GetSpeed
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_GetSpeed
2021-10-14 20:30:40 +02:00
name : GetSpeed
nameWithType : Vehicle.GetSpeed
fullName : TinyLife.Objects.Vehicle.GetSpeed
2024-01-07 16:53:47 +01:00
- uid : TinyLife.World.Household.FurnitureStorage
commentId : F:TinyLife.World.Household.FurnitureStorage
href : TinyLife.World.Household.html#TinyLife_World_Household_FurnitureStorage
name : FurnitureStorage
nameWithType : Household.FurnitureStorage
fullName : TinyLife.World.Household.FurnitureStorage
- uid : TinyLife.GameImpl.Speed
commentId : P:TinyLife.GameImpl.Speed
href : TinyLife.GameImpl.html#TinyLife_GameImpl_Speed
name : Speed
nameWithType : GameImpl.Speed
fullName : TinyLife.GameImpl.Speed
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.Update*
commentId : Overload:TinyLife.Objects.Vehicle.Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
name : Update
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.Update
fullName : TinyLife.Objects.Vehicle.Update
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.IUpdatingObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.IUpdatingObject.html#TinyLife_Objects_IUpdatingObject_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : IUpdatingObject.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : IUpdatingObject.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.IUpdatingObject.html#TinyLife_Objects_IUpdatingObject_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-11-26 23:42:22 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.IUpdatingObject.html#TinyLife_Objects_IUpdatingObject_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-08-04 06:51:12 +02:00
- name : )
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
commentId : T:Microsoft.Xna.Framework.GameTime
parent : Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal : true
name : GameTime
nameWithType : GameTime
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
- uid : System.TimeSpan
commentId : T:System.TimeSpan
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2021-08-04 06:51:12 +02:00
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
2024-01-07 16:53:47 +01:00
- 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 : MLEM.Graphics.StaticSpriteBatch
commentId : T:MLEM.Graphics.StaticSpriteBatch
isExternal : true
name : StaticSpriteBatch
nameWithType : StaticSpriteBatch
fullName : MLEM.Graphics.StaticSpriteBatch
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
commentId : M:TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Draw_Microsoft_Xna_Framework_GameTime_System_Object_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2023-03-30 18:07:55 +02:00
name : Draw(GameTime, object, Vector2, Color?, List<Item>)
nameWithType : MapObject.Draw(GameTime, object, Vector2, Color?, List<StaticSpriteBatch.Item>)
fullName : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List<MLEM.Graphics.StaticSpriteBatch.Item>)
nameWithType.vb : MapObject.Draw(GameTime, Object, Vector2, Color?, List(Of StaticSpriteBatch.Item))
fullName.vb : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime, Object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item))
name.vb : Draw(GameTime, Object, Vector2, Color?, List(Of Item))
2022-09-05 14:19:42 +02:00
spec.csharp :
- uid : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
name : Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Draw_Microsoft_Xna_Framework_GameTime_System_Object_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2022-09-05 14:19:42 +02:00
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-09-05 14:19:42 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
- name : <
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : '>'
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
name : Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_Draw_Microsoft_Xna_Framework_GameTime_System_Object_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2022-09-05 14:19:42 +02:00
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Vector2
name : Vector2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
- name : ','
- name : " "
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
2022-09-05 14:19:42 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : )
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.Draw*
commentId : Overload:TinyLife.Objects.Vehicle.Draw
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_Draw_Microsoft_Xna_Framework_GameTime_System_Object_Microsoft_Xna_Framework_Vector2_System_Nullable_Microsoft_Xna_Framework_Color__System_Collections_Generic_List_MLEM_Graphics_StaticSpriteBatch_Item__
2021-08-04 06:51:12 +02:00
name : Draw
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.Draw
fullName : TinyLife.Objects.Vehicle.Draw
2022-09-05 14:19:42 +02:00
- uid : System.Nullable{Microsoft.Xna.Framework.Color}
commentId : T:System.Nullable{Microsoft.Xna.Framework.Color}
2021-08-04 06:51:12 +02:00
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
name : Color?
nameWithType : Color?
fullName : Microsoft.Xna.Framework.Color?
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2021-08-04 06:51:12 +02:00
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name : Color
2022-09-05 14:19:42 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item}
commentId : T:System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item}
parent : System.Collections.Generic
definition : System.Collections.Generic.List`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
name : List<StaticSpriteBatch.Item>
nameWithType : List<StaticSpriteBatch.Item>
fullName : System.Collections.Generic.List<MLEM.Graphics.StaticSpriteBatch.Item>
nameWithType.vb : List(Of StaticSpriteBatch.Item)
fullName.vb : System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item)
name.vb : List(Of StaticSpriteBatch.Item)
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch
name : StaticSpriteBatch
isExternal : true
- name : .
2022-09-05 14:19:42 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2022-09-05 14:19:42 +02:00
isExternal : true
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : MLEM.Graphics.StaticSpriteBatch
name : StaticSpriteBatch
isExternal : true
- name : .
2022-09-05 14:19:42 +02:00
- uid : MLEM.Graphics.StaticSpriteBatch.Item
2023-03-30 18:07:55 +02:00
name : Item
2021-08-04 06:51:12 +02:00
isExternal : true
- name : )
2024-01-07 16:53:47 +01:00
- 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
2021-08-04 06:51:12 +02:00
- uid : System.Nullable`1
commentId : T:System.Nullable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : T
- name : )
2022-09-05 14:19:42 +02:00
- uid : System.Collections.Generic.List`1
commentId : T:System.Collections.Generic.List`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
name : List<T>
nameWithType : List<T>
fullName : System.Collections.Generic.List<T>
nameWithType.vb : List(Of T)
fullName.vb : System.Collections.Generic.List(Of T)
name.vb : List(Of T)
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-09-05 14:19:42 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
2022-09-05 14:19:42 +02:00
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-09-05 14:19:42 +02:00
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
commentId : M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCameraRotationChanged_MLEM_Maths_Direction2_MLEM_Maths_Direction2_
2021-08-04 06:51:12 +02:00
name : OnCameraRotationChanged(Direction2, Direction2)
nameWithType : MapObject.OnCameraRotationChanged(Direction2, Direction2)
2024-07-26 12:47:59 +02:00
fullName : TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2, MLEM.Maths.Direction2)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-08-04 06:51:12 +02:00
name : OnCameraRotationChanged
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCameraRotationChanged_MLEM_Maths_Direction2_MLEM_Maths_Direction2_
2021-08-04 06:51:12 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.Direction2
2021-08-04 06:51:12 +02:00
name : Direction2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.Direction2
2021-08-04 06:51:12 +02:00
name : Direction2
isExternal : true
- name : )
spec.vb :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Maths.Direction2,MLEM.Maths.Direction2)
2021-08-04 06:51:12 +02:00
name : OnCameraRotationChanged
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnCameraRotationChanged_MLEM_Maths_Direction2_MLEM_Maths_Direction2_
2021-08-04 06:51:12 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.Direction2
2021-08-04 06:51:12 +02:00
name : Direction2
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.Direction2
2021-08-04 06:51:12 +02:00
name : Direction2
isExternal : true
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Vehicle.OnCameraRotationChanged*
commentId : Overload:TinyLife.Objects.Vehicle.OnCameraRotationChanged
2024-07-26 12:47:59 +02:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_OnCameraRotationChanged_MLEM_Maths_Direction2_MLEM_Maths_Direction2_
2021-08-04 06:51:12 +02:00
name : OnCameraRotationChanged
2021-10-14 20:30:40 +02:00
nameWithType : Vehicle.OnCameraRotationChanged
fullName : TinyLife.Objects.Vehicle.OnCameraRotationChanged
- uid : TinyLife.Objects.MapObject.OnRemoved
commentId : M:TinyLife.Objects.MapObject.OnRemoved
parent : TinyLife.Objects.MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRemoved
2021-10-14 20:30:40 +02:00
name : OnRemoved()
nameWithType : MapObject.OnRemoved()
fullName : TinyLife.Objects.MapObject.OnRemoved()
spec.csharp :
- uid : TinyLife.Objects.MapObject.OnRemoved
name : OnRemoved
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRemoved
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.OnRemoved
name : OnRemoved
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_OnRemoved
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Objects.Vehicle.OnRemoved*
commentId : Overload:TinyLife.Objects.Vehicle.OnRemoved
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_OnRemoved
2021-10-14 20:30:40 +02:00
name : OnRemoved
nameWithType : Vehicle.OnRemoved
fullName : TinyLife.Objects.Vehicle.OnRemoved
2024-01-07 16:53:47 +01:00
- uid : TinyLife.World.Household
commentId : T:TinyLife.World.Household
parent : TinyLife.World
href : TinyLife.World.Household.html
name : Household
nameWithType : Household
fullName : TinyLife.World.Household
2023-08-15 13:17:22 +02:00
- uid : TinyLife.Objects.MapObject.ResetToStatic(System.Boolean,System.Boolean)
commentId : M:TinyLife.Objects.MapObject.ResetToStatic(System.Boolean,System.Boolean)
2023-01-19 11:28:13 +01:00
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ResetToStatic_System_Boolean_System_Boolean_
2023-08-15 13:17:22 +02:00
name : ResetToStatic(bool, bool)
nameWithType : MapObject.ResetToStatic(bool, bool)
fullName : TinyLife.Objects.MapObject.ResetToStatic(bool, bool)
nameWithType.vb : MapObject.ResetToStatic(Boolean, Boolean)
fullName.vb : TinyLife.Objects.MapObject.ResetToStatic(Boolean, Boolean)
name.vb : ResetToStatic(Boolean, Boolean)
2023-01-19 11:28:13 +01:00
spec.csharp :
2023-08-15 13:17:22 +02:00
- uid : TinyLife.Objects.MapObject.ResetToStatic(System.Boolean,System.Boolean)
2023-01-19 11:28:13 +01:00
name : ResetToStatic
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ResetToStatic_System_Boolean_System_Boolean_
2023-01-19 11:28:13 +01:00
- name : (
2023-08-15 13:17:22 +02:00
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2023-01-19 11:28:13 +01:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2023-01-19 11:28:13 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2023-01-19 11:28:13 +01:00
- name : )
spec.vb :
2023-08-15 13:17:22 +02:00
- uid : TinyLife.Objects.MapObject.ResetToStatic(System.Boolean,System.Boolean)
2023-01-19 11:28:13 +01:00
name : ResetToStatic
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_ResetToStatic_System_Boolean_System_Boolean_
2023-01-19 11:28:13 +01:00
- name : (
2023-08-15 13:17:22 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
2023-01-19 11:28:13 +01:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2023-01-19 11:28:13 +01:00
- name : )
- uid : TinyLife.Objects.Vehicle.ResetToStatic*
commentId : Overload:TinyLife.Objects.Vehicle.ResetToStatic
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_ResetToStatic_System_Boolean_System_Boolean_
2023-01-19 11:28:13 +01:00
name : ResetToStatic
nameWithType : Vehicle.ResetToStatic
fullName : TinyLife.Objects.Vehicle.ResetToStatic
2023-06-25 15:41:49 +02:00
- 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
2024-01-07 16:53:47 +01:00
- uid : TinyLife.Objects.Furniture
commentId : T:TinyLife.Objects.Furniture
parent : TinyLife.Objects
href : TinyLife.Objects.Furniture.html
name : Furniture
nameWithType : Furniture
fullName : TinyLife.Objects.Furniture
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
2024-01-07 16:53:47 +01:00
parent : TinyLife.Objects
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
2023-10-11 16:05:32 +02:00
- uid : TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
commentId : M:TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
parent : TinyLife.Objects.MapObject
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetHoverInfo_MLEM_Ui_Elements_Tooltip_
2023-10-11 16:05:32 +02:00
name : GetHoverInfo(Tooltip)
nameWithType : MapObject.GetHoverInfo(Tooltip)
fullName : TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
spec.csharp :
- uid : TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
name : GetHoverInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetHoverInfo_MLEM_Ui_Elements_Tooltip_
2023-10-11 16:05:32 +02:00
- name : (
- uid : MLEM.Ui.Elements.Tooltip
name : Tooltip
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
name : GetHoverInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetHoverInfo_MLEM_Ui_Elements_Tooltip_
2023-10-11 16:05:32 +02:00
- name : (
- uid : MLEM.Ui.Elements.Tooltip
name : Tooltip
isExternal : true
- name : )
- uid : TinyLife.Objects.Vehicle.GetHoverInfo*
commentId : Overload:TinyLife.Objects.Vehicle.GetHoverInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_GetHoverInfo_MLEM_Ui_Elements_Tooltip_
2023-10-11 16:05:32 +02:00
name : GetHoverInfo
nameWithType : Vehicle.GetHoverInfo
fullName : TinyLife.Objects.Vehicle.GetHoverInfo
- uid : MLEM.Ui.Elements.Tooltip
commentId : T:MLEM.Ui.Elements.Tooltip
parent : MLEM.Ui.Elements
isExternal : true
name : Tooltip
nameWithType : Tooltip
fullName : MLEM.Ui.Elements.Tooltip
- uid : MLEM.Ui.Elements
commentId : N : MLEM.Ui.Elements
isExternal : true
name : MLEM.Ui.Elements
nameWithType : MLEM.Ui.Elements
fullName : MLEM.Ui.Elements
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Debug
commentId : T:TinyLife.Debug
href : TinyLife.Debug.html
name : Debug
nameWithType : Debug
fullName : TinyLife.Debug
- uid : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
commentId : M:TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
parent : TinyLife.Objects.MapObject
isExternal : true
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetDebugLines_TinyLife_GameImpl_System_Collections_Generic_List_System_String__
name : GetDebugLines(GameImpl, List<string>)
nameWithType : MapObject.GetDebugLines(GameImpl, List<string>)
fullName : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl, System.Collections.Generic.List<string>)
nameWithType.vb : MapObject.GetDebugLines(GameImpl, List(Of String))
fullName.vb : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl, System.Collections.Generic.List(Of String))
name.vb : GetDebugLines(GameImpl, List(Of String))
spec.csharp :
- uid : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
name : GetDebugLines
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetDebugLines_TinyLife_GameImpl_System_Collections_Generic_List_System_String__
- name : (
- uid : TinyLife.GameImpl
name : GameImpl
href : TinyLife.GameImpl.html
- name : ','
- name : " "
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : '>'
- name : )
spec.vb :
- uid : TinyLife.Objects.MapObject.GetDebugLines(TinyLife.GameImpl,System.Collections.Generic.List{System.String})
name : GetDebugLines
href : TinyLife.Objects.MapObject.html#TinyLife_Objects_MapObject_GetDebugLines_TinyLife_GameImpl_System_Collections_Generic_List_System_String__
- name : (
- uid : TinyLife.GameImpl
name : GameImpl
href : TinyLife.GameImpl.html
- name : ','
- name : " "
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- name : )
- uid : TinyLife.Objects.Vehicle.GetDebugLines*
commentId : Overload:TinyLife.Objects.Vehicle.GetDebugLines
href : TinyLife.Objects.Vehicle.html#TinyLife_Objects_Vehicle_GetDebugLines_TinyLife_GameImpl_System_Collections_Generic_List_System_String__
name : GetDebugLines
nameWithType : Vehicle.GetDebugLines
fullName : TinyLife.Objects.Vehicle.GetDebugLines
- uid : TinyLife.GameImpl
commentId : T:TinyLife.GameImpl
parent : TinyLife
href : TinyLife.GameImpl.html
name : GameImpl
nameWithType : GameImpl
fullName : TinyLife.GameImpl
- uid : System.Collections.Generic.List{System.String}
commentId : T:System.Collections.Generic.List{System.String}
parent : System.Collections.Generic
definition : System.Collections.Generic.List`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<string>
nameWithType : List<string>
fullName : System.Collections.Generic.List<string>
nameWithType.vb : List(Of String)
fullName.vb : System.Collections.Generic.List(Of String)
name.vb : List(Of String)
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- uid : TinyLife
commentId : N : TinyLife
href : TinyLife.html
name : TinyLife
nameWithType : TinyLife
fullName : TinyLife