This commit is contained in:
Ell 2024-07-09 20:29:36 +02:00
parent 70f6905eaa
commit 03a30fb485
10 changed files with 425 additions and 40 deletions

View file

@ -1,3 +1,9 @@
# 0.43.1
*July 9, 2024*
Fixes
- Fixed a crash when displaying the lot employment edit panel
# 0.43.0
*July 9, 2024*

View file

@ -3926,6 +3926,7 @@
"TinyLife.World.ExportedHousehold.FurnitureStorage": "TinyLife.World.ExportedHousehold.yml",
"TinyLife.World.ExportedHousehold.Members": "TinyLife.World.ExportedHousehold.yml",
"TinyLife.World.ExportedHousehold.Money": "TinyLife.World.ExportedHousehold.yml",
"TinyLife.World.ExportedHousehold.ValidateForPreview(TinyLife.World.Map)": "TinyLife.World.ExportedHousehold.yml",
"TinyLife.World.ExportedLot": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.Area": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.ExportedVersion": "TinyLife.World.ExportedLot.yml",
@ -3937,6 +3938,7 @@
"TinyLife.World.ExportedLot.Stairs": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.Tiles": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.Type": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.ValidateForPreview(TinyLife.World.Map)": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.WallLikes": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.ExportedLot.Walls": "TinyLife.World.ExportedLot.yml",
"TinyLife.World.FurnitureMail": "TinyLife.World.FurnitureMail.yml",
@ -3959,6 +3961,7 @@
"TinyLife.World.Household.FurnitureStorage": "TinyLife.World.Household.yml",
"TinyLife.World.Household.Generate(TinyLife.World.Map,System.Random,System.Collections.Generic.List{TinyLife.Objects.AgeGroup},System.Collections.Generic.Dictionary{System.ValueTuple{System.Int32,System.Int32},TinyLife.World.Household.Relation})": "TinyLife.World.Household.yml",
"TinyLife.World.Household.GetAgeGroups(System.Collections.Generic.IEnumerable{TinyLife.Objects.PersonLike})": "TinyLife.World.Household.yml",
"TinyLife.World.Household.GetExportedHouseholds": "TinyLife.World.Household.yml",
"TinyLife.World.Household.GetMatchingConstellations(TinyLife.Objects.AgeGroup)": "TinyLife.World.Household.yml",
"TinyLife.World.Household.GetWeeklyBills": "TinyLife.World.Household.yml",
"TinyLife.World.Household.HasBeenPlayed": "TinyLife.World.Household.yml",
@ -4015,6 +4018,7 @@
"TinyLife.World.Lot.Export": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetCoveredArea": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetDefaultTile": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetExportedLots": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetFrontDoor": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetHomeLocation(TinyLife.Objects.PersonLike)": "TinyLife.World.Lot.yml",
"TinyLife.World.Lot.GetObjects``1": "TinyLife.World.Lot.yml",

View file

@ -21,7 +21,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TransitionType
path: ../TinyLife/Uis/Menus.cs
startLine: 1342
startLine: 1330
assemblies:
- Tiny Life
namespace: TinyLife.Uis
@ -50,7 +50,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Swipe
path: ../TinyLife/Uis/Menus.cs
startLine: 1348
startLine: 1336
assemblies:
- Tiny Life
namespace: TinyLife.Uis
@ -81,7 +81,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Fade
path: ../TinyLife/Uis/Menus.cs
startLine: 1353
startLine: 1341
assemblies:
- Tiny Life
namespace: TinyLife.Uis

View file

@ -274,7 +274,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreateHouseholdPreview
path: ../TinyLife/Uis/Menus.cs
startLine: 230
startLine: 221
assemblies:
- Tiny Life
namespace: TinyLife.Uis

View file

@ -11,6 +11,7 @@ items:
- TinyLife.World.ExportedHousehold.FurnitureStorage
- TinyLife.World.ExportedHousehold.Members
- TinyLife.World.ExportedHousehold.Money
- TinyLife.World.ExportedHousehold.ValidateForPreview(TinyLife.World.Map)
langs:
- csharp
- vb
@ -226,6 +227,35 @@ items:
return:
type: System.String
content.vb: Public Description As String
- uid: TinyLife.World.ExportedHousehold.ValidateForPreview(TinyLife.World.Map)
commentId: M:TinyLife.World.ExportedHousehold.ValidateForPreview(TinyLife.World.Map)
id: ValidateForPreview(TinyLife.World.Map)
parent: TinyLife.World.ExportedHousehold
langs:
- csharp
- vb
name: ValidateForPreview(Map)
nameWithType: ExportedHousehold.ValidateForPreview(Map)
fullName: TinyLife.World.ExportedHousehold.ValidateForPreview(TinyLife.World.Map)
type: Method
source:
remote:
path: TinyLife/World/Household.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateForPreview
path: ../TinyLife/World/Household.cs
startLine: 711
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public void ValidateForPreview(Map map)
parameters:
- id: map
type: TinyLife.World.Map
content.vb: Public Sub ValidateForPreview(map As Map)
overload: TinyLife.World.ExportedHousehold.ValidateForPreview*
references:
- uid: TinyLife.World.Household
commentId: T:TinyLife.World.Household
@ -816,3 +846,9 @@ references:
name: WornClothes
href: TinyLife.Objects.WornClothes.html
- name: )
- uid: TinyLife.World.ExportedHousehold.ValidateForPreview*
commentId: Overload:TinyLife.World.ExportedHousehold.ValidateForPreview
href: TinyLife.World.ExportedHousehold.html#TinyLife_World_ExportedHousehold_ValidateForPreview_TinyLife_World_Map_
name: ValidateForPreview
nameWithType: ExportedHousehold.ValidateForPreview
fullName: TinyLife.World.ExportedHousehold.ValidateForPreview

View file

@ -15,6 +15,7 @@ items:
- TinyLife.World.ExportedLot.Stairs
- TinyLife.World.ExportedLot.Tiles
- TinyLife.World.ExportedLot.Type
- TinyLife.World.ExportedLot.ValidateForPreview(TinyLife.World.Map)
- TinyLife.World.ExportedLot.WallLikes
- TinyLife.World.ExportedLot.Walls
langs:
@ -422,6 +423,35 @@ items:
description: The area that this lot covers
content.vb: Public Function GetCoveredArea() As RectangleF
overload: TinyLife.World.ExportedLot.GetCoveredArea*
- uid: TinyLife.World.ExportedLot.ValidateForPreview(TinyLife.World.Map)
commentId: M:TinyLife.World.ExportedLot.ValidateForPreview(TinyLife.World.Map)
id: ValidateForPreview(TinyLife.World.Map)
parent: TinyLife.World.ExportedLot
langs:
- csharp
- vb
name: ValidateForPreview(Map)
nameWithType: ExportedLot.ValidateForPreview(Map)
fullName: TinyLife.World.ExportedLot.ValidateForPreview(TinyLife.World.Map)
type: Method
source:
remote:
path: TinyLife/World/Lot.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateForPreview
path: ../TinyLife/World/Lot.cs
startLine: 671
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public void ValidateForPreview(Map map)
parameters:
- id: map
type: TinyLife.World.Map
content.vb: Public Sub ValidateForPreview(map As Map)
overload: TinyLife.World.ExportedLot.ValidateForPreview*
references:
- uid: TinyLife.World.Lot
commentId: T:TinyLife.World.Lot
@ -1283,3 +1313,16 @@ references:
- uid: MLEM.Misc
name: Misc
isExternal: true
- uid: TinyLife.World.ExportedLot.ValidateForPreview*
commentId: Overload:TinyLife.World.ExportedLot.ValidateForPreview
href: TinyLife.World.ExportedLot.html#TinyLife_World_ExportedLot_ValidateForPreview_TinyLife_World_Map_
name: ValidateForPreview
nameWithType: ExportedLot.ValidateForPreview
fullName: TinyLife.World.ExportedLot.ValidateForPreview
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
href: TinyLife.World.Map.html
name: Map
nameWithType: Map
fullName: TinyLife.World.Map

View file

@ -19,6 +19,7 @@ items:
- TinyLife.World.Household.FurnitureStorage
- TinyLife.World.Household.Generate(TinyLife.World.Map,System.Random,System.Collections.Generic.List{TinyLife.Objects.AgeGroup},System.Collections.Generic.Dictionary{System.ValueTuple{System.Int32,System.Int32},TinyLife.World.Household.Relation})
- TinyLife.World.Household.GetAgeGroups(System.Collections.Generic.IEnumerable{TinyLife.Objects.PersonLike})
- TinyLife.World.Household.GetExportedHouseholds
- TinyLife.World.Household.GetMatchingConstellations(TinyLife.Objects.AgeGroup)
- TinyLife.World.Household.GetWeeklyBills
- TinyLife.World.Household.HasBeenPlayed
@ -1253,6 +1254,34 @@ items:
description: Matching constellations, as well as a percentage that determines how well they match.
content.vb: Public Shared Function GetMatchingConstellations(ages As AgeGroup) As IEnumerable(Of (Constellation As Household.RandomConstellation, MatchPercentage As Single))
overload: TinyLife.World.Household.GetMatchingConstellations*
- uid: TinyLife.World.Household.GetExportedHouseholds
commentId: M:TinyLife.World.Household.GetExportedHouseholds
id: GetExportedHouseholds
parent: TinyLife.World.Household
langs:
- csharp
- vb
name: GetExportedHouseholds()
nameWithType: Household.GetExportedHouseholds()
fullName: TinyLife.World.Household.GetExportedHouseholds()
type: Method
source:
remote:
path: TinyLife/World/Household.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetExportedHouseholds
path: ../TinyLife/World/Household.cs
startLine: 475
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public static IEnumerable<(FileInfo File, ExportedHousehold Household, string DisplayName, bool Custom)> GetExportedHouseholds()
return:
type: System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}}
content.vb: Public Shared Function GetExportedHouseholds() As IEnumerable(Of (File As FileInfo, Household As ExportedHousehold, DisplayName As String, Custom As Boolean))
overload: TinyLife.World.Household.GetExportedHouseholds*
references:
- uid: TinyLife.Objects.PersonLike
commentId: T:TinyLife.Objects.PersonLike
@ -3317,3 +3346,122 @@ references:
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- name: )
- uid: TinyLife.World.Household.GetExportedHouseholds*
commentId: Overload:TinyLife.World.Household.GetExportedHouseholds
href: TinyLife.World.Household.html#TinyLife_World_Household_GetExportedHouseholds
name: GetExportedHouseholds
nameWithType: Household.GetExportedHouseholds
fullName: TinyLife.World.Household.GetExportedHouseholds
- uid: System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}}
commentId: T:System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<(FileInfo File, ExportedHousehold Household, string DisplayName, bool Custom)>
nameWithType: IEnumerable<(FileInfo File, ExportedHousehold Household, string DisplayName, bool Custom)>
fullName: System.Collections.Generic.IEnumerable<(System.IO.FileInfo File, TinyLife.World.ExportedHousehold Household, string DisplayName, bool Custom)>
nameWithType.vb: IEnumerable(Of (File As FileInfo, Household As ExportedHousehold, DisplayName As String, Custom As Boolean))
fullName.vb: System.Collections.Generic.IEnumerable(Of (File As System.IO.FileInfo, Household As TinyLife.World.ExportedHousehold, DisplayName As String, Custom As Boolean))
name.vb: IEnumerable(Of (File As FileInfo, Household As ExportedHousehold, DisplayName As String, Custom As Boolean))
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: (
- uid: System.IO.FileInfo
name: FileInfo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.io.fileinfo
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.File
name: File
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.file
- name: ','
- name: " "
- uid: TinyLife.World.ExportedHousehold
name: ExportedHousehold
href: TinyLife.World.ExportedHousehold.html
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.Household
name: Household
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.household
- name: ','
- name: " "
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.DisplayName
name: DisplayName
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.displayname
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.Custom
name: Custom
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.custom
- name: )
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: (
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.File
name: File
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.file
- name: " "
- name: As
- name: " "
- uid: System.IO.FileInfo
name: FileInfo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.io.fileinfo
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.Household
name: Household
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.household
- name: " "
- name: As
- name: " "
- uid: TinyLife.World.ExportedHousehold
name: ExportedHousehold
href: TinyLife.World.ExportedHousehold.html
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.DisplayName
name: DisplayName
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.displayname
- name: " "
- name: As
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedHousehold,System.String,System.Boolean}.Custom
name: Custom
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedhousehold,system.string,system.boolean-.custom
- name: " "
- name: As
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- name: )

View file

@ -17,6 +17,7 @@ items:
- TinyLife.World.Lot.Export
- TinyLife.World.Lot.GetCoveredArea
- TinyLife.World.Lot.GetDefaultTile
- TinyLife.World.Lot.GetExportedLots
- TinyLife.World.Lot.GetFrontDoor
- TinyLife.World.Lot.GetHomeLocation(TinyLife.Objects.PersonLike)
- TinyLife.World.Lot.GetObjects``1
@ -1163,6 +1164,34 @@ items:
nameWithType.vb: Lot.Clear(Boolean, Boolean)
fullName.vb: TinyLife.World.Lot.Clear(Boolean, Boolean)
name.vb: Clear(Boolean, Boolean)
- uid: TinyLife.World.Lot.GetExportedLots
commentId: M:TinyLife.World.Lot.GetExportedLots
id: GetExportedLots
parent: TinyLife.World.Lot
langs:
- csharp
- vb
name: GetExportedLots()
nameWithType: Lot.GetExportedLots()
fullName: TinyLife.World.Lot.GetExportedLots()
type: Method
source:
remote:
path: TinyLife/World/Lot.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetExportedLots
path: ../TinyLife/World/Lot.cs
startLine: 543
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public static IEnumerable<(FileInfo File, ExportedLot Lot, string DisplayName, bool Custom)> GetExportedLots()
return:
type: System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}}
content.vb: Public Shared Function GetExportedLots() As IEnumerable(Of (File As FileInfo, Lot As ExportedLot, DisplayName As String, Custom As Boolean))
overload: TinyLife.World.Lot.GetExportedLots*
references:
- uid: TinyLife.Tools.LotTool
commentId: T:TinyLife.Tools.LotTool
@ -2982,3 +3011,122 @@ references:
name: Clear
nameWithType: Lot.Clear
fullName: TinyLife.World.Lot.Clear
- uid: TinyLife.World.Lot.GetExportedLots*
commentId: Overload:TinyLife.World.Lot.GetExportedLots
href: TinyLife.World.Lot.html#TinyLife_World_Lot_GetExportedLots
name: GetExportedLots
nameWithType: Lot.GetExportedLots
fullName: TinyLife.World.Lot.GetExportedLots
- uid: System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}}
commentId: T:System.Collections.Generic.IEnumerable{System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<(FileInfo File, ExportedLot Lot, string DisplayName, bool Custom)>
nameWithType: IEnumerable<(FileInfo File, ExportedLot Lot, string DisplayName, bool Custom)>
fullName: System.Collections.Generic.IEnumerable<(System.IO.FileInfo File, TinyLife.World.ExportedLot Lot, string DisplayName, bool Custom)>
nameWithType.vb: IEnumerable(Of (File As FileInfo, Lot As ExportedLot, DisplayName As String, Custom As Boolean))
fullName.vb: System.Collections.Generic.IEnumerable(Of (File As System.IO.FileInfo, Lot As TinyLife.World.ExportedLot, DisplayName As String, Custom As Boolean))
name.vb: IEnumerable(Of (File As FileInfo, Lot As ExportedLot, DisplayName As String, Custom As Boolean))
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: (
- uid: System.IO.FileInfo
name: FileInfo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.io.fileinfo
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.File
name: File
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.file
- name: ','
- name: " "
- uid: TinyLife.World.ExportedLot
name: ExportedLot
href: TinyLife.World.ExportedLot.html
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.Lot
name: Lot
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.lot
- name: ','
- name: " "
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.DisplayName
name: DisplayName
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.displayname
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.Custom
name: Custom
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.custom
- name: )
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: (
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.File
name: File
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.file
- name: " "
- name: As
- name: " "
- uid: System.IO.FileInfo
name: FileInfo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.io.fileinfo
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.Lot
name: Lot
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.lot
- name: " "
- name: As
- name: " "
- uid: TinyLife.World.ExportedLot
name: ExportedLot
href: TinyLife.World.ExportedLot.html
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.DisplayName
name: DisplayName
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.displayname
- name: " "
- name: As
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.ValueTuple{System.IO.FileInfo,TinyLife.World.ExportedLot,System.String,System.Boolean}.Custom
name: Custom
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.io.fileinfo,tinylife.world.exportedlot,system.string,system.boolean-.custom
- name: " "
- name: As
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- name: )

View file

@ -30,7 +30,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Instance
path: ../TinyLife/World/LotEmployment.cs
startLine: 366
startLine: 368
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -82,7 +82,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Map
path: ../TinyLife/World/LotEmployment.cs
startLine: 372
startLine: 374
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -113,7 +113,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmploymentLot
path: ../TinyLife/World/LotEmployment.cs
startLine: 377
startLine: 379
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -147,7 +147,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkLot
path: ../TinyLife/World/LotEmployment.cs
startLine: 382
startLine: 384
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -181,7 +181,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type
path: ../TinyLife/World/LotEmployment.cs
startLine: 389
startLine: 391
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -212,7 +212,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetManually
path: ../TinyLife/World/LotEmployment.cs
startLine: 402
startLine: 404
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -253,7 +253,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsAtWork
path: ../TinyLife/World/LotEmployment.cs
startLine: 408
startLine: 410
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -292,7 +292,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TimeAtWork
path: ../TinyLife/World/LotEmployment.cs
startLine: 414
startLine: 416
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -334,7 +334,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/World/LotEmployment.cs
startLine: 439
startLine: 441
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -381,7 +381,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FinishWork
path: ../TinyLife/World/LotEmployment.cs
startLine: 452
startLine: 454
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -419,7 +419,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/World/LotEmployment.cs
startLine: 482
startLine: 484
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -457,7 +457,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShouldWorkRightNow
path: ../TinyLife/World/LotEmployment.cs
startLine: 494
startLine: 496
assemblies:
- Tiny Life
namespace: TinyLife.World

View file

@ -42,7 +42,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LotType
path: ../TinyLife/World/Lot.cs
startLine: 677
startLine: 690
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -90,7 +90,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Types
path: ../TinyLife/World/Lot.cs
startLine: 684
startLine: 697
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -119,7 +119,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Residential
path: ../TinyLife/World/Lot.cs
startLine: 687
startLine: 700
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -146,7 +146,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Park
path: ../TinyLife/World/Lot.cs
startLine: 703
startLine: 716
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -173,7 +173,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cafe
path: ../TinyLife/World/Lot.cs
startLine: 706
startLine: 719
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -200,7 +200,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: KidsPlayground
path: ../TinyLife/World/Lot.cs
startLine: 717
startLine: 730
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -227,7 +227,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Library
path: ../TinyLife/World/Lot.cs
startLine: 724
startLine: 737
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -254,7 +254,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GenericPublicLot
path: ../TinyLife/World/Lot.cs
startLine: 733
startLine: 746
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -281,7 +281,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Gym
path: ../TinyLife/World/Lot.cs
startLine: 736
startLine: 749
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -308,7 +308,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bar
path: ../TinyLife/World/Lot.cs
startLine: 743
startLine: 756
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -335,7 +335,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Museum
path: ../TinyLife/World/Lot.cs
startLine: 754
startLine: 767
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -362,7 +362,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name
path: ../TinyLife/World/Lot.cs
startLine: 769
startLine: 782
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -391,7 +391,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Icon
path: ../TinyLife/World/Lot.cs
startLine: 773
startLine: 786
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -420,7 +420,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsResidential
path: ../TinyLife/World/Lot.cs
startLine: 778
startLine: 791
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -452,7 +452,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RequiredFurniture
path: ../TinyLife/World/Lot.cs
startLine: 783
startLine: 796
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -484,7 +484,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetVisitPriority
path: ../TinyLife/World/Lot.cs
startLine: 790
startLine: 803
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -520,7 +520,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Employments
path: ../TinyLife/World/Lot.cs
startLine: 795
startLine: 808
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -554,7 +554,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanExecuteAction
path: ../TinyLife/World/Lot.cs
startLine: 800
startLine: 813
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -588,7 +588,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VisitHours
path: ../TinyLife/World/Lot.cs
startLine: 805
startLine: 818
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -622,7 +622,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisplayName
path: ../TinyLife/World/Lot.cs
startLine: 810
startLine: 823
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -653,7 +653,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/World/Lot.cs
startLine: 820
startLine: 833
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -700,7 +700,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCurrentVisitPriority
path: ../TinyLife/World/Lot.cs
startLine: 837
startLine: 850
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -746,7 +746,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register
path: ../TinyLife/World/Lot.cs
startLine: 845
startLine: 858
assemblies:
- Tiny Life
namespace: TinyLife.World
@ -780,7 +780,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetScalingVisitPriority
path: ../TinyLife/World/Lot.cs
startLine: 858
startLine: 871
assemblies:
- Tiny Life
namespace: TinyLife.World