### YamlMime:ManagedReference items: - uid: TinyLife.Objects.Vehicle commentId: T:TinyLife.Objects.Vehicle id: Vehicle parent: TinyLife.Objects children: - TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType) - TinyLife.Objects.Vehicle.Action - 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}) - TinyLife.Objects.Vehicle.Driver - TinyLife.Objects.Vehicle.GetSpeed - TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) - TinyLife.Objects.Vehicle.OnRemoved - TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean) - TinyLife.Objects.Vehicle.Rotation - TinyLife.Objects.Vehicle.Type - TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) langs: - csharp - vb name: Vehicle nameWithType: Vehicle fullName: TinyLife.Objects.Vehicle type: Class source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Vehicle path: ../TinyLife/Objects/Vehicle.cs startLine: 16 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nAn instance of this class represents an object that can be, or is, part of a .\n" example: [] syntax: content: 'public class Vehicle : MapObject, IGenericDataHolder, IUpdatingObject' content.vb: Public Class Vehicle Inherits MapObject Implements IGenericDataHolder, IUpdatingObject inheritance: - System.Object - MLEM.Data.Json.JsonTypeSafeGenericDataHolder - TinyLife.Objects.MapObject implements: - MLEM.Misc.IGenericDataHolder - TinyLife.Objects.IUpdatingObject inheritedMembers: - TinyLife.Objects.MapObject.PersonRotationOrder - TinyLife.Objects.MapObject.OnCreated - TinyLife.Objects.MapObject.OnValidated - TinyLife.Objects.MapObject.OnValidatedEarly - TinyLife.Objects.MapObject.OnEventsAttachable - TinyLife.Objects.MapObject.OnDraw - TinyLife.Objects.MapObject.OnUpdate - TinyLife.Objects.MapObject.OnGetHoverInfo - TinyLife.Objects.MapObject.Position - TinyLife.Objects.MapObject.ParentInfo - TinyLife.Objects.MapObject.Visibility - TinyLife.Objects.MapObject.Id - TinyLife.Objects.MapObject.Map - TinyLife.Objects.MapObject.CurrentLot - TinyLife.Objects.MapObject.CurrentRoom - TinyLife.Objects.MapObject.IsInWorld - TinyLife.Objects.MapObject.HoldingPerson - TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) - TinyLife.Objects.MapObject.ValidateEarly - TinyLife.Objects.MapObject.Validate - TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) - TinyLife.Objects.MapObject.OnAdded - TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip) - TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) - TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean) - TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean) - TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean) - TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) - TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) - TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) - TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single) - TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType) - TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point) - TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point) - TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) - 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) - TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,System.Single,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,System.Boolean,System.Boolean) - TinyLife.Objects.MapObject.GetModCategory(System.String) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - TinyLife.Objects.Vehicle.TinyLife.Utilities.Extensions.JsonCopy``1 - uid: TinyLife.Objects.Vehicle.Rotation commentId: F:TinyLife.Objects.Vehicle.Rotation id: Rotation parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: Rotation nameWithType: Vehicle.Rotation fullName: TinyLife.Objects.Vehicle.Rotation type: Field source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Rotation path: ../TinyLife/Objects/Vehicle.cs startLine: 25 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThe rotation that this car has\n" example: [] syntax: content: >- [DataMember] public Direction2 Rotation return: type: MLEM.Misc.Direction2 content.vb: >- Public Rotation As Direction2 attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - uid: TinyLife.Objects.Vehicle.Driver commentId: F:TinyLife.Objects.Vehicle.Driver id: Driver parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: Driver nameWithType: Vehicle.Driver fullName: TinyLife.Objects.Vehicle.Driver type: Field source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Driver path: ../TinyLife/Objects/Vehicle.cs startLine: 30 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThe id of the person driving the car\n" example: [] syntax: content: >- [DataMember] public Guid Driver return: type: System.Guid content.vb: >- Public Driver As Guid attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - 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 source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Action path: ../TinyLife/Objects/Vehicle.cs startLine: 35 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThe id of the drive action.\n" example: [] syntax: content: >- [DataMember] public Guid Action return: type: System.Guid content.vb: >- Public Action As Guid attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - 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 source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Objects/Vehicle.cs startLine: 40 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThe type that this vehicle has\n" example: [] syntax: content: >- [DataMember] public Vehicle.VehicleType Type return: type: TinyLife.Objects.Vehicle.VehicleType content.vb: >- Public Type As Vehicle.VehicleType attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - uid: TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType) commentId: M:TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType) id: '#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType)' parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: Vehicle(Guid, Map, Vector2, VehicleType) nameWithType: Vehicle.Vehicle(Guid, Map, Vector2, Vehicle.VehicleType) fullName: TinyLife.Objects.Vehicle.Vehicle(System.Guid, TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, TinyLife.Objects.Vehicle.VehicleType) type: Constructor source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Objects/Vehicle.cs startLine: 45 assemblies: - Tiny Life namespace: TinyLife.Objects example: [] syntax: content: public Vehicle(Guid id, Map map, Vector2 position, Vehicle.VehicleType type) parameters: - id: id type: System.Guid - id: map type: TinyLife.World.Map - id: position type: Microsoft.Xna.Framework.Vector2 - id: type type: TinyLife.Objects.Vehicle.VehicleType content.vb: Public Sub New(id As Guid, map As Map, position As Vector2, type As Vehicle.VehicleType) overload: TinyLife.Objects.Vehicle.#ctor* nameWithType.vb: Vehicle.New(Guid, Map, Vector2, Vehicle.VehicleType) fullName.vb: TinyLife.Objects.Vehicle.New(System.Guid, TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, TinyLife.Objects.Vehicle.VehicleType) name.vb: New(Guid, Map, Vector2, VehicleType) - 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 source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetSpeed path: ../TinyLife/Objects/Vehicle.cs startLine: 63 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nReturns the speed that this vehicle has\n" example: [] syntax: content: public virtual float GetSpeed() return: type: System.Single description: This vehicle's speed content.vb: Public Overridable Function GetSpeed() As Single overload: TinyLife.Objects.Vehicle.GetSpeed* - 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) parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: Update(GameTime, TimeSpan, float) nameWithType: Vehicle.Update(GameTime, TimeSpan, float) fullName: TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float) type: Method source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Objects/Vehicle.cs startLine: 72 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThe update method, which is called every update frame by the underlying , as well as additional places like the . Because of this, some actions might only want to be invoked if an object .\nTo call this method while invoking all required events, use .\n" example: [] syntax: content: public virtual void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier) parameters: - id: time type: Microsoft.Xna.Framework.GameTime description: The game's time - id: passedInGame type: System.TimeSpan description: The amount of time that has passed since the last call - id: speedMultiplier type: System.Single description: The game speed multiplier, which represents how fast things should happen, which is usually determined by content.vb: Public Overridable Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single) overload: TinyLife.Objects.Vehicle.Update* implements: - TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) 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) - 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}) parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: Draw(GameTime, object, Vector2, Color?, List) nameWithType: Vehicle.Draw(GameTime, object, Vector2, Color?, List) fullName: TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List) type: Method source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/Objects/Vehicle.cs startLine: 86 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nDraws this object on the current , at the current .\nTo draw a map object while invoking all the required events, use .\n" example: [] syntax: content: public override void Draw(GameTime time, object batch, Vector2 drawPos, Color? overrideColor, List items) parameters: - id: time type: Microsoft.Xna.Framework.GameTime description: The current time - id: batch type: System.Object description: The sprite batch to use for drawing, which is either a or . - id: drawPos type: Microsoft.Xna.Framework.Vector2 description: The position, in draw space, to draw this furniture at - id: overrideColor type: System.Nullable{Microsoft.Xna.Framework.Color} description: The color that should be used instead of this object's actual color. If null, the object's regular color should be used. - id: items type: System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item} description: A list of sprite batch items that items should be added to if the batch is a . 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}) overload: TinyLife.Objects.Vehicle.Draw* 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)) - uid: TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) commentId: M:TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) id: OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: OnCameraRotationChanged(Direction2, Direction2) nameWithType: Vehicle.OnCameraRotationChanged(Direction2, Direction2) fullName: TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2, MLEM.Misc.Direction2) type: Method source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnCameraRotationChanged path: ../TinyLife/Objects/Vehicle.cs startLine: 95 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThis method is invoked when the game's camera rotation changes.\nAdditionally, the old and new rotations are passed.\n" example: [] syntax: content: public override void OnCameraRotationChanged(Direction2 oldRotation, Direction2 newRotation) parameters: - id: oldRotation type: MLEM.Misc.Direction2 description: The old camera rotation - id: newRotation type: MLEM.Misc.Direction2 description: The new camera rotation content.vb: Public Overrides Sub OnCameraRotationChanged(oldRotation As Direction2, newRotation As Direction2) overridden: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) 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 source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: OnRemoved path: ../TinyLife/Objects/Vehicle.cs startLine: 102 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nThis method is called when this object is removed from a .\nBy default, it does nothing.\n" example: [] syntax: content: public override void OnRemoved() content.vb: Public Overrides Sub OnRemoved() overridden: TinyLife.Objects.MapObject.OnRemoved overload: TinyLife.Objects.Vehicle.OnRemoved* - uid: TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean) commentId: M:TinyLife.Objects.Vehicle.ResetToStatic(System.Boolean) id: ResetToStatic(System.Boolean) parent: TinyLife.Objects.Vehicle langs: - csharp - vb name: ResetToStatic(bool) nameWithType: Vehicle.ResetToStatic(bool) fullName: TinyLife.Objects.Vehicle.ResetToStatic(bool) type: Method source: remote: path: TinyLife/Objects/Vehicle.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ResetToStatic path: ../TinyLife/Objects/Vehicle.cs startLine: 108 assemblies: - Tiny Life namespace: TinyLife.Objects summary: "\nResets this map object to a static state when the that is on is exported.\n" example: [] syntax: content: public override bool ResetToStatic(bool thorough) parameters: - id: thorough type: System.Boolean description: Whether a more thorough reset is expected, which usually involves normalizing additional data and cleaning up player data entirely. return: type: System.Boolean description: Whether this object should stay on the map after the static reset. If false is returned, this object is removed. content.vb: Public Overrides Function ResetToStatic(thorough As Boolean) As Boolean overridden: TinyLife.Objects.MapObject.ResetToStatic(System.Boolean) overload: TinyLife.Objects.Vehicle.ResetToStatic* nameWithType.vb: Vehicle.ResetToStatic(Boolean) fullName.vb: TinyLife.Objects.Vehicle.ResetToStatic(Boolean) name.vb: ResetToStatic(Boolean) references: - uid: TinyLife.Objects.MapObject commentId: T:TinyLife.Objects.MapObject parent: TinyLife.Objects name: MapObject nameWithType: MapObject fullName: TinyLife.Objects.MapObject - uid: TinyLife.Objects commentId: N:TinyLife.Objects name: TinyLife.Objects nameWithType: TinyLife.Objects fullName: TinyLife.Objects spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Objects name: Objects spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Objects name: Objects - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder parent: MLEM.Data.Json isExternal: true name: JsonTypeSafeGenericDataHolder nameWithType: JsonTypeSafeGenericDataHolder fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder - uid: MLEM.Misc.IGenericDataHolder commentId: T:MLEM.Misc.IGenericDataHolder parent: MLEM.Misc isExternal: true name: IGenericDataHolder nameWithType: IGenericDataHolder fullName: MLEM.Misc.IGenericDataHolder - uid: TinyLife.Objects.IUpdatingObject commentId: T:TinyLife.Objects.IUpdatingObject parent: TinyLife.Objects name: IUpdatingObject nameWithType: IUpdatingObject fullName: TinyLife.Objects.IUpdatingObject - uid: TinyLife.Objects.MapObject.PersonRotationOrder commentId: F:TinyLife.Objects.MapObject.PersonRotationOrder parent: TinyLife.Objects.MapObject 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 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 name: OnValidated nameWithType: MapObject.OnValidated fullName: TinyLife.Objects.MapObject.OnValidated - uid: TinyLife.Objects.MapObject.OnValidatedEarly commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly parent: TinyLife.Objects.MapObject name: OnValidatedEarly nameWithType: MapObject.OnValidatedEarly fullName: TinyLife.Objects.MapObject.OnValidatedEarly - uid: TinyLife.Objects.MapObject.OnEventsAttachable commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable parent: TinyLife.Objects.MapObject 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 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 name: OnUpdate nameWithType: MapObject.OnUpdate fullName: TinyLife.Objects.MapObject.OnUpdate - uid: TinyLife.Objects.MapObject.OnGetHoverInfo commentId: E:TinyLife.Objects.MapObject.OnGetHoverInfo parent: TinyLife.Objects.MapObject name: OnGetHoverInfo nameWithType: MapObject.OnGetHoverInfo fullName: TinyLife.Objects.MapObject.OnGetHoverInfo - uid: TinyLife.Objects.MapObject.Position commentId: P:TinyLife.Objects.MapObject.Position parent: TinyLife.Objects.MapObject name: Position nameWithType: MapObject.Position fullName: TinyLife.Objects.MapObject.Position - uid: TinyLife.Objects.MapObject.ParentInfo commentId: P:TinyLife.Objects.MapObject.ParentInfo parent: TinyLife.Objects.MapObject name: ParentInfo nameWithType: MapObject.ParentInfo fullName: TinyLife.Objects.MapObject.ParentInfo - uid: TinyLife.Objects.MapObject.Visibility commentId: P:TinyLife.Objects.MapObject.Visibility parent: TinyLife.Objects.MapObject name: Visibility nameWithType: MapObject.Visibility fullName: TinyLife.Objects.MapObject.Visibility - uid: TinyLife.Objects.MapObject.Id commentId: P:TinyLife.Objects.MapObject.Id parent: TinyLife.Objects.MapObject name: Id nameWithType: MapObject.Id fullName: TinyLife.Objects.MapObject.Id - uid: TinyLife.Objects.MapObject.Map commentId: P:TinyLife.Objects.MapObject.Map parent: TinyLife.Objects.MapObject name: Map nameWithType: MapObject.Map fullName: TinyLife.Objects.MapObject.Map - uid: TinyLife.Objects.MapObject.CurrentLot commentId: P:TinyLife.Objects.MapObject.CurrentLot parent: TinyLife.Objects.MapObject name: CurrentLot nameWithType: MapObject.CurrentLot fullName: TinyLife.Objects.MapObject.CurrentLot - uid: TinyLife.Objects.MapObject.CurrentRoom commentId: P:TinyLife.Objects.MapObject.CurrentRoom parent: TinyLife.Objects.MapObject name: CurrentRoom nameWithType: MapObject.CurrentRoom fullName: TinyLife.Objects.MapObject.CurrentRoom - uid: TinyLife.Objects.MapObject.IsInWorld commentId: P:TinyLife.Objects.MapObject.IsInWorld parent: TinyLife.Objects.MapObject name: IsInWorld nameWithType: MapObject.IsInWorld fullName: TinyLife.Objects.MapObject.IsInWorld - uid: TinyLife.Objects.MapObject.HoldingPerson commentId: P:TinyLife.Objects.MapObject.HoldingPerson parent: TinyLife.Objects.MapObject name: HoldingPerson nameWithType: MapObject.HoldingPerson fullName: TinyLife.Objects.MapObject.HoldingPerson - uid: TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) commentId: M:TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) parent: TinyLife.Objects.MapObject isExternal: true name: Intersects(RectangleF) nameWithType: MapObject.Intersects(RectangleF) fullName: TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) spec.csharp: - uid: TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) name: Intersects - name: ( - uid: MLEM.Misc.RectangleF name: RectangleF isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF) name: Intersects - name: ( - uid: MLEM.Misc.RectangleF name: RectangleF isExternal: true - name: ) - uid: TinyLife.Objects.MapObject.ValidateEarly commentId: M:TinyLife.Objects.MapObject.ValidateEarly parent: TinyLife.Objects.MapObject name: ValidateEarly() nameWithType: MapObject.ValidateEarly() fullName: TinyLife.Objects.MapObject.ValidateEarly() spec.csharp: - uid: TinyLife.Objects.MapObject.ValidateEarly name: ValidateEarly - name: ( - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.ValidateEarly name: ValidateEarly - name: ( - name: ) - uid: TinyLife.Objects.MapObject.Validate commentId: M:TinyLife.Objects.MapObject.Validate parent: TinyLife.Objects.MapObject name: Validate() nameWithType: MapObject.Validate() fullName: TinyLife.Objects.MapObject.Validate() spec.csharp: - uid: TinyLife.Objects.MapObject.Validate name: Validate - name: ( - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.Validate name: Validate - name: ( - name: ) - uid: TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) commentId: M:TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) parent: TinyLife.Objects.MapObject name: GetCategories(Person) nameWithType: MapObject.GetCategories(Person) fullName: TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) spec.csharp: - uid: TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) name: GetCategories - name: ( - uid: TinyLife.Objects.Person name: Person - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person) name: GetCategories - name: ( - uid: TinyLife.Objects.Person name: Person - name: ) - uid: TinyLife.Objects.MapObject.OnAdded commentId: M:TinyLife.Objects.MapObject.OnAdded parent: TinyLife.Objects.MapObject name: OnAdded() nameWithType: MapObject.OnAdded() fullName: TinyLife.Objects.MapObject.OnAdded() spec.csharp: - uid: TinyLife.Objects.MapObject.OnAdded name: OnAdded - name: ( - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.OnAdded name: OnAdded - name: ( - name: ) - 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 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 - name: ( - uid: MLEM.Ui.Elements.Tooltip name: Tooltip isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip) name: GetHoverInfo - name: ( - uid: MLEM.Ui.Elements.Tooltip name: Tooltip isExternal: true - name: ) - uid: TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) commentId: M:TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) parent: TinyLife.Objects.MapObject name: GetAiPriority(Person, ObjectCategory) nameWithType: MapObject.GetAiPriority(Person, ObjectCategory) fullName: TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person, TinyLife.Objects.ObjectCategory) spec.csharp: - uid: TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: GetAiPriority - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetAiPriority(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: GetAiPriority - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) - 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 href: https://learn.microsoft.com/dotnet/api/system.boolean 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) spec.csharp: - uid: TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean) name: CanExecuteAction - name: ( - uid: TinyLife.Actions.ActionType name: ActionType - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean,System.Boolean) name: CanExecuteAction - name: ( - uid: TinyLife.Actions.ActionType name: ActionType - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean) commentId: M:TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean 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) spec.csharp: - uid: TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean) name: OnActionCompleted - name: ( - uid: TinyLife.Actions.Action name: Action - name: ',' - name: " " - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean) name: OnActionCompleted - name: ( - uid: TinyLife.Actions.Action name: Action - name: ',' - name: " " - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - 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) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan 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) spec.csharp: - uid: TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean) name: ActionUpdate - name: ( - uid: TinyLife.Actions.Action name: Action - name: ',' - name: " " - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean) name: ActionUpdate - name: ( - uid: TinyLife.Actions.Action name: Action - name: ',' - name: " " - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) commentId: M:TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) parent: TinyLife.Objects.MapObject name: GetFreeActionSpotInfo(Person, ObjectCategory) nameWithType: MapObject.GetFreeActionSpotInfo(Person, ObjectCategory) fullName: TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person, TinyLife.Objects.ObjectCategory) spec.csharp: - uid: TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: GetFreeActionSpotInfo - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: GetFreeActionSpotInfo - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) - uid: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) commentId: M:TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) parent: TinyLife.Objects.MapObject name: SetMapAndValidate(Map) nameWithType: MapObject.SetMapAndValidate(Map) fullName: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) spec.csharp: - uid: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) name: SetMapAndValidate - name: ( - uid: TinyLife.World.Map name: Map - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map) name: SetMapAndValidate - name: ( - uid: TinyLife.World.Map name: Map - name: ) - uid: TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) commentId: M:TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) parent: TinyLife.Objects.MapObject name: HasCategory(Person, ObjectCategory) nameWithType: MapObject.HasCategory(Person, ObjectCategory) fullName: TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person, TinyLife.Objects.ObjectCategory) spec.csharp: - uid: TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: HasCategory - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory) name: HasCategory - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Objects.ObjectCategory name: ObjectCategory - name: ) - uid: TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single) commentId: M:TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: GetEfficiencyModifier(Person, ActionInfo, bool, SkillType, float) nameWithType: MapObject.GetEfficiencyModifier(Person, ActionInfo, bool, SkillType, float) fullName: TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person, TinyLife.Actions.ActionInfo, bool, TinyLife.Skills.SkillType, float) nameWithType.vb: MapObject.GetEfficiencyModifier(Person, ActionInfo, Boolean, SkillType, Single) fullName.vb: TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person, TinyLife.Actions.ActionInfo, Boolean, TinyLife.Skills.SkillType, Single) name.vb: GetEfficiencyModifier(Person, ActionInfo, Boolean, SkillType, Single) spec.csharp: - uid: TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single) name: GetEfficiencyModifier - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - 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 - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetEfficiencyModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Skills.SkillType,System.Single) name: GetEfficiencyModifier - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - 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 - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType) commentId: M:TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: GetRestoreNeedModifier(Person, ActionInfo, bool, NeedType) nameWithType: MapObject.GetRestoreNeedModifier(Person, ActionInfo, bool, NeedType) fullName: TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person, TinyLife.Actions.ActionInfo, bool, TinyLife.NeedType) nameWithType.vb: MapObject.GetRestoreNeedModifier(Person, ActionInfo, Boolean, NeedType) fullName.vb: TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person, TinyLife.Actions.ActionInfo, Boolean, TinyLife.NeedType) name.vb: GetRestoreNeedModifier(Person, ActionInfo, Boolean, NeedType) spec.csharp: - uid: TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType) name: GetRestoreNeedModifier - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: TinyLife.NeedType name: NeedType - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetRestoreNeedModifier(TinyLife.Objects.Person,TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.NeedType) name: GetRestoreNeedModifier - name: ( - uid: TinyLife.Objects.Person name: Person - name: ',' - name: " " - uid: TinyLife.Actions.ActionInfo name: ActionInfo - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: TinyLife.NeedType name: NeedType - name: ) - 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 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 - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.IsFreeSpot(Microsoft.Xna.Framework.Point) name: IsFreeSpot - 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 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 - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point) name: GetPathCostModifier - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - uid: TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) commentId: M:TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) parent: TinyLife.Objects.MapObject isExternal: true name: OnPositionChanged(Vector2) nameWithType: MapObject.OnPositionChanged(Vector2) fullName: TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) spec.csharp: - uid: TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) name: OnPositionChanged - name: ( - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.OnPositionChanged(Microsoft.Xna.Framework.Vector2) name: OnPositionChanged - name: ( - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ) - 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}) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: DoDraw(GameTime, object, Color?, bool, List) nameWithType: MapObject.DoDraw(GameTime, object, Color?, bool, List) fullName: TinyLife.Objects.MapObject.DoDraw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Color?, bool, System.Collections.Generic.List) 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)) spec.csharp: - 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}) name: DoDraw - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: '>' - name: ) spec.vb: - 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}) name: DoDraw - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.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: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: ) - name: ) - 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) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan 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) spec.csharp: - uid: TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: DoUpdate - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.DoUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: DoUpdate - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,System.Single,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,System.Boolean,System.Boolean) commentId: M:TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,System.Single,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,System.Boolean,System.Boolean) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: DrawColumns(Map, Vector2, object, Vector2, TextureRegion, Color, float, Point, List, bool, ParentInfo, float, SpriteEffects, bool, bool, bool) nameWithType: MapObject.DrawColumns(Map, Vector2, object, Vector2, TextureRegion, Color, float, Point, List, bool, ParentInfo, float, SpriteEffects, bool, bool, bool) fullName: TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, object, Microsoft.Xna.Framework.Vector2, MLEM.Textures.TextureRegion, Microsoft.Xna.Framework.Color, float, Microsoft.Xna.Framework.Point, System.Collections.Generic.List, bool, TinyLife.Objects.ParentInfo, float, Microsoft.Xna.Framework.Graphics.SpriteEffects, bool, bool, bool) nameWithType.vb: MapObject.DrawColumns(Map, Vector2, Object, Vector2, TextureRegion, Color, Single, Point, List(Of StaticSpriteBatch.Item), Boolean, ParentInfo, Single, SpriteEffects, Boolean, Boolean, Boolean) fullName.vb: TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, Object, Microsoft.Xna.Framework.Vector2, MLEM.Textures.TextureRegion, Microsoft.Xna.Framework.Color, Single, Microsoft.Xna.Framework.Point, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item), Boolean, TinyLife.Objects.ParentInfo, Single, Microsoft.Xna.Framework.Graphics.SpriteEffects, Boolean, Boolean, Boolean) name.vb: DrawColumns(Map, Vector2, Object, Vector2, TextureRegion, Color, Single, Point, List(Of Item), Boolean, ParentInfo, Single, SpriteEffects, Boolean, Boolean, Boolean) spec.csharp: - uid: TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,System.Single,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,System.Boolean,System.Boolean) name: DrawColumns - name: ( - uid: TinyLife.World.Map name: Map - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: MLEM.Textures.TextureRegion name: TextureRegion isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - 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: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: '>' - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: TinyLife.Objects.ParentInfo name: ParentInfo - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Graphics.SpriteEffects name: SpriteEffects isExternal: true - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.DrawColumns(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Object,Microsoft.Xna.Framework.Vector2,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,System.Single,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,System.Boolean,System.Boolean) name: DrawColumns - name: ( - uid: TinyLife.World.Map name: Map - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: MLEM.Textures.TextureRegion name: TextureRegion isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - 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: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: ) - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: TinyLife.Objects.ParentInfo name: ParentInfo - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Graphics.SpriteEffects name: SpriteEffects isExternal: true - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Objects.MapObject.GetModCategory(System.String) commentId: M:TinyLife.Objects.MapObject.GetModCategory(System.String) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string 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) spec.csharp: - uid: TinyLife.Objects.MapObject.GetModCategory(System.String) name: GetModCategory - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.GetModCategory(System.String) name: GetModCategory - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, object) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, object) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, object) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(String, Object) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(String, Object) name.vb: SetData(String, Object) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder definition: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: GetData(string) nameWithType: JsonTypeSafeGenericDataHolder.GetData(string) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(string) nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String) name.vb: GetData(Of T)(String) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true name: GetDataKeys() nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys() fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys() spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys isExternal: true - name: ( - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys isExternal: true - name: ( - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: TinyLife.Objects.Vehicle.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(Vehicle) nameWithType: Extensions.JsonCopy(Vehicle) fullName: TinyLife.Utilities.Extensions.JsonCopy(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) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.Vehicle) name: JsonCopy - name: < - uid: TinyLife.Objects.Vehicle name: Vehicle - name: '>' - name: ( - uid: TinyLife.Objects.Vehicle name: Vehicle - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.Vehicle) name: JsonCopy - name: ( - name: Of - name: " " - uid: TinyLife.Objects.Vehicle name: Vehicle - name: ) - name: ( - uid: TinyLife.Objects.Vehicle name: Vehicle - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: MLEM.Data.Json commentId: N:MLEM.Data.Json isExternal: true name: MLEM.Data.Json nameWithType: MLEM.Data.Json fullName: MLEM.Data.Json spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Data name: Data isExternal: true - name: . - uid: MLEM.Data.Json name: Json isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Data name: Data isExternal: true - name: . - uid: MLEM.Data.Json name: Json isExternal: true - uid: MLEM.Misc commentId: N:MLEM.Misc isExternal: true name: MLEM.Misc nameWithType: MLEM.Misc fullName: MLEM.Misc spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Misc name: Misc isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Misc name: Misc isExternal: true - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(T) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(T) nameWithType.vb: Extensions.JsonCopy(Of T)(T) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T) name.vb: JsonCopy(Of T)(T) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: < - name: T - name: '>' - name: ( - name: T - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities - uid: MLEM.Misc.Direction2 commentId: T:MLEM.Misc.Direction2 parent: MLEM.Misc isExternal: true name: Direction2 nameWithType: Direction2 fullName: MLEM.Misc.Direction2 - uid: System.Guid commentId: T:System.Guid parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.guid name: Guid nameWithType: Guid fullName: System.Guid - uid: TinyLife.Objects.Vehicle.VehicleType commentId: T:TinyLife.Objects.Vehicle.VehicleType parent: TinyLife.Objects name: Vehicle.VehicleType nameWithType: Vehicle.VehicleType fullName: TinyLife.Objects.Vehicle.VehicleType spec.csharp: - uid: TinyLife.Objects.Vehicle name: Vehicle - name: . - uid: TinyLife.Objects.Vehicle.VehicleType name: VehicleType spec.vb: - uid: TinyLife.Objects.Vehicle name: Vehicle - name: . - uid: TinyLife.Objects.Vehicle.VehicleType name: VehicleType - uid: TinyLife.Objects.Vehicle.#ctor* commentId: Overload:TinyLife.Objects.Vehicle.#ctor name: Vehicle nameWithType: Vehicle.Vehicle fullName: TinyLife.Objects.Vehicle.Vehicle nameWithType.vb: Vehicle.New fullName.vb: TinyLife.Objects.Vehicle.New name.vb: New - uid: TinyLife.World.Map commentId: T:TinyLife.World.Map parent: TinyLife.World name: Map nameWithType: Map fullName: TinyLife.World.Map - uid: Microsoft.Xna.Framework.Vector2 commentId: T:Microsoft.Xna.Framework.Vector2 parent: Microsoft.Xna.Framework isExternal: true name: Vector2 nameWithType: Vector2 fullName: Microsoft.Xna.Framework.Vector2 - uid: TinyLife.World commentId: N:TinyLife.World name: TinyLife.World nameWithType: TinyLife.World fullName: TinyLife.World spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.World name: World spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.World name: World - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - uid: TinyLife.Objects.Vehicle.GetSpeed* commentId: Overload:TinyLife.Objects.Vehicle.GetSpeed name: GetSpeed nameWithType: Vehicle.GetSpeed fullName: TinyLife.Objects.Vehicle.GetSpeed - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: TinyLife.Objects.Vehicle.Update* commentId: Overload:TinyLife.Objects.Vehicle.Update name: Update nameWithType: Vehicle.Update fullName: TinyLife.Objects.Vehicle.Update - 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) parent: TinyLife.Objects.IUpdatingObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan 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) spec.csharp: - uid: TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: Update - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - uid: TinyLife.Objects.IUpdatingObject.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: Update - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: Microsoft.Xna.Framework.GameTime commentId: T:Microsoft.Xna.Framework.GameTime parent: Microsoft.Xna.Framework isExternal: true name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime - uid: System.TimeSpan commentId: T:System.TimeSpan parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan name: TimeSpan nameWithType: TimeSpan fullName: System.TimeSpan - 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 href: https://learn.microsoft.com/dotnet/api/system.object name: Draw(GameTime, object, Vector2, Color?, List) nameWithType: MapObject.Draw(GameTime, object, Vector2, Color?, List) fullName: TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime, object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List) 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)) 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 - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - name: ',' - name: " " - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: MLEM.Graphics.StaticSpriteBatch.Item name: Item 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 - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Vector2 name: Vector2 isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - name: ',' - name: " " - uid: System.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: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: ) - name: ) - uid: TinyLife.Objects.Vehicle.Draw* commentId: Overload:TinyLife.Objects.Vehicle.Draw name: Draw nameWithType: Vehicle.Draw fullName: TinyLife.Objects.Vehicle.Draw - uid: System.Nullable{Microsoft.Xna.Framework.Color} commentId: T:System.Nullable{Microsoft.Xna.Framework.Color} parent: System definition: System.Nullable`1 name: Color? nameWithType: Color? fullName: Microsoft.Xna.Framework.Color? spec.csharp: - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' spec.vb: - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - uid: System.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 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List 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 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: MLEM.Graphics.StaticSpriteBatch name: StaticSpriteBatch isExternal: true - name: . - uid: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - 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: MLEM.Graphics.StaticSpriteBatch name: StaticSpriteBatch isExternal: true - name: . - uid: MLEM.Graphics.StaticSpriteBatch.Item name: Item isExternal: true - name: ) - uid: System.Nullable`1 commentId: T:System.Nullable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of T) fullName.vb: System.Nullable(Of T) name.vb: Nullable(Of T) spec.csharp: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic.List`1 commentId: T:System.Collections.Generic.List`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List 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 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - 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: " " - name: T - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic 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 - uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) parent: TinyLife.Objects.MapObject isExternal: true name: OnCameraRotationChanged(Direction2, Direction2) nameWithType: MapObject.OnCameraRotationChanged(Direction2, Direction2) fullName: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2, MLEM.Misc.Direction2) spec.csharp: - uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) name: OnCameraRotationChanged - name: ( - uid: MLEM.Misc.Direction2 name: Direction2 isExternal: true - name: ',' - name: " " - uid: MLEM.Misc.Direction2 name: Direction2 isExternal: true - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2) name: OnCameraRotationChanged - name: ( - uid: MLEM.Misc.Direction2 name: Direction2 isExternal: true - name: ',' - name: " " - uid: MLEM.Misc.Direction2 name: Direction2 isExternal: true - name: ) - uid: TinyLife.Objects.Vehicle.OnCameraRotationChanged* commentId: Overload:TinyLife.Objects.Vehicle.OnCameraRotationChanged name: OnCameraRotationChanged nameWithType: Vehicle.OnCameraRotationChanged fullName: TinyLife.Objects.Vehicle.OnCameraRotationChanged - uid: TinyLife.Objects.MapObject.OnRemoved commentId: M:TinyLife.Objects.MapObject.OnRemoved parent: TinyLife.Objects.MapObject name: OnRemoved() nameWithType: MapObject.OnRemoved() fullName: TinyLife.Objects.MapObject.OnRemoved() spec.csharp: - uid: TinyLife.Objects.MapObject.OnRemoved name: OnRemoved - name: ( - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.OnRemoved name: OnRemoved - name: ( - name: ) - uid: TinyLife.Objects.Vehicle.OnRemoved* commentId: Overload:TinyLife.Objects.Vehicle.OnRemoved name: OnRemoved nameWithType: Vehicle.OnRemoved fullName: TinyLife.Objects.Vehicle.OnRemoved - uid: TinyLife.Objects.MapObject.ResetToStatic(System.Boolean) commentId: M:TinyLife.Objects.MapObject.ResetToStatic(System.Boolean) parent: TinyLife.Objects.MapObject isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: ResetToStatic(bool) nameWithType: MapObject.ResetToStatic(bool) fullName: TinyLife.Objects.MapObject.ResetToStatic(bool) nameWithType.vb: MapObject.ResetToStatic(Boolean) fullName.vb: TinyLife.Objects.MapObject.ResetToStatic(Boolean) name.vb: ResetToStatic(Boolean) spec.csharp: - uid: TinyLife.Objects.MapObject.ResetToStatic(System.Boolean) name: ResetToStatic - name: ( - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - uid: TinyLife.Objects.MapObject.ResetToStatic(System.Boolean) name: ResetToStatic - name: ( - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Objects.Vehicle.ResetToStatic* commentId: Overload:TinyLife.Objects.Vehicle.ResetToStatic name: ResetToStatic nameWithType: Vehicle.ResetToStatic fullName: TinyLife.Objects.Vehicle.ResetToStatic - 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