mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
0.37.0-pre.2
This commit is contained in:
parent
0e289870ac
commit
f0c7b9401e
12 changed files with 142 additions and 128 deletions
14
Changelog.md
14
Changelog.md
|
@ -1,3 +1,17 @@
|
||||||
|
# 0.37.0-pre.2
|
||||||
|
*October 12, 2023*
|
||||||
|
|
||||||
|
*This is a preview version. If you want to try it out, you can find more info on [the documentation](https://docs.tinylifegame.com/articles/preview.html).*
|
||||||
|
|
||||||
|
Improvements
|
||||||
|
- Display an info that the game needs to be restarted when enabling or disabling mods
|
||||||
|
- Remove roofs that intersect with newly created rooms
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
- Catch any validation exceptions for map objects
|
||||||
|
- Fixed fairy lights crashing when not on a wall
|
||||||
|
- Fixed newly created rooms blocking stairs with tiles
|
||||||
|
|
||||||
# 0.37.0-pre.1
|
# 0.37.0-pre.1
|
||||||
*October 11, 2023*
|
*October 11, 2023*
|
||||||
|
|
||||||
|
|
|
@ -1334,11 +1334,11 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetMapAndValidate
|
id: SetMapAndValidate
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 361
|
startLine: 362
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
summary: "\nShorthand method for setting this object's <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref> and then calling <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>.\nIf moving an already validated object to a different map is desired, <xref href=\"TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map%2cMicrosoft.Xna.Framework.Vector2%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> should be used instead.\n"
|
summary: "\nShorthand method for setting this object's <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref> and then calling <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>.\nIf an exception occurs while validating, the exception is caught and <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool\">false</a> is returned.\nIf moving an already validated object to a different map is desired, <xref href=\"TinyLife.Objects.MapObject.MoveToMap(TinyLife.World.Map%2cMicrosoft.Xna.Framework.Vector2%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> should be used instead.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public bool SetMapAndValidate(Map map)
|
content: public bool SetMapAndValidate(Map map)
|
||||||
|
@ -1369,7 +1369,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasCategory
|
id: HasCategory
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 373
|
startLine: 379
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1407,7 +1407,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetEfficiencyModifier
|
id: GetEfficiencyModifier
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 389
|
startLine: 395
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1457,7 +1457,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRestoreNeedModifier
|
id: GetRestoreNeedModifier
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 404
|
startLine: 410
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1504,7 +1504,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsFreeSpot
|
id: IsFreeSpot
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 415
|
startLine: 421
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1539,7 +1539,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCrossBetween
|
id: CanCrossBetween
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 426
|
startLine: 432
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1577,7 +1577,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPathCostModifier
|
id: GetPathCostModifier
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 438
|
startLine: 444
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1612,7 +1612,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ResetToStatic
|
id: ResetToStatic
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 448
|
startLine: 454
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1653,7 +1653,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MoveToMap
|
id: MoveToMap
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 460
|
startLine: 466
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1697,7 +1697,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnPositionChanged
|
id: OnPositionChanged
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 479
|
startLine: 485
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1735,7 +1735,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DoDraw
|
id: DoDraw
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 489
|
startLine: 495
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1782,7 +1782,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DoUpdate
|
id: DoUpdate
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 506
|
startLine: 512
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1823,7 +1823,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DrawColumns
|
id: DrawColumns
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 536
|
startLine: 542
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1906,7 +1906,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetModCategory
|
id: GetModCategory
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 601
|
startLine: 607
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -100,7 +100,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ObjectCategory
|
id: ObjectCategory
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 624
|
startLine: 630
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -162,7 +162,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Nothing
|
id: Nothing
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 627
|
startLine: 633
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -191,7 +191,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Ground
|
id: Ground
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 629
|
startLine: 635
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -220,7 +220,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Chair
|
id: Chair
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 631
|
startLine: 637
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -249,7 +249,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BabySittable
|
id: BabySittable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 633
|
startLine: 639
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -278,7 +278,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Toilet
|
id: Toilet
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 635
|
startLine: 641
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -307,7 +307,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SingleBed
|
id: SingleBed
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 637
|
startLine: 643
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -336,7 +336,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DoubleBed
|
id: DoubleBed
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 639
|
startLine: 645
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -365,7 +365,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Fridge
|
id: Fridge
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 641
|
startLine: 647
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -394,7 +394,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Shower
|
id: Shower
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 643
|
startLine: 649
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -423,7 +423,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Counter
|
id: Counter
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 645
|
startLine: 651
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -452,7 +452,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Stove
|
id: Stove
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 647
|
startLine: 653
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -481,7 +481,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Oven
|
id: Oven
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 649
|
startLine: 655
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -510,7 +510,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SmallObject
|
id: SmallObject
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 651
|
startLine: 657
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -539,7 +539,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NonBuyable
|
id: NonBuyable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 653
|
startLine: 659
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -568,7 +568,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Table
|
id: Table
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 655
|
startLine: 661
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -597,7 +597,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Holdable
|
id: Holdable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 657
|
startLine: 663
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -626,7 +626,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DeskObject
|
id: DeskObject
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 659
|
startLine: 665
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -655,7 +655,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DisallowedOnGround
|
id: DisallowedOnGround
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 661
|
startLine: 667
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -684,7 +684,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Computer
|
id: Computer
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 663
|
startLine: 669
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -713,7 +713,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sink
|
id: Sink
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 665
|
startLine: 671
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -742,7 +742,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CounterObject
|
id: CounterObject
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 667
|
startLine: 673
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -771,7 +771,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Cleanable
|
id: Cleanable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 669
|
startLine: 675
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -800,7 +800,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: People
|
id: People
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 671
|
startLine: 677
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -829,7 +829,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Mailbox
|
id: Mailbox
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 673
|
startLine: 679
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -858,7 +858,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Wardrobe
|
id: Wardrobe
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 675
|
startLine: 681
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -887,7 +887,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NaturalGroundRequired
|
id: NaturalGroundRequired
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 677
|
startLine: 683
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -916,7 +916,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WaterRequired
|
id: WaterRequired
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 679
|
startLine: 685
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -945,7 +945,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AllowedOnWater
|
id: AllowedOnWater
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 681
|
startLine: 687
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -974,7 +974,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Self
|
id: Self
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 683
|
startLine: 689
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1003,7 +1003,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WallHanging
|
id: WallHanging
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 685
|
startLine: 691
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1032,7 +1032,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ForceGridPlacement
|
id: ForceGridPlacement
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 687
|
startLine: 693
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1061,7 +1061,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Easel
|
id: Easel
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 689
|
startLine: 695
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1090,7 +1090,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Mirror
|
id: Mirror
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 691
|
startLine: 697
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1119,7 +1119,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Bookshelf
|
id: Bookshelf
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 693
|
startLine: 699
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1148,7 +1148,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NonColliding
|
id: NonColliding
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 695
|
startLine: 701
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1177,7 +1177,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Gravestone
|
id: Gravestone
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 697
|
startLine: 703
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1206,7 +1206,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NonSellable
|
id: NonSellable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 699
|
startLine: 705
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1235,7 +1235,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NonMovable
|
id: NonMovable
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 701
|
startLine: 707
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1264,7 +1264,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Tree
|
id: Tree
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 703
|
startLine: 709
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1293,7 +1293,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Television
|
id: Television
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 705
|
startLine: 711
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1322,7 +1322,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BartendingObject
|
id: BartendingObject
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 707
|
startLine: 713
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1351,7 +1351,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Walls
|
id: Walls
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 709
|
startLine: 715
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1380,7 +1380,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LargeSurfaceObject
|
id: LargeSurfaceObject
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 711
|
startLine: 717
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1409,7 +1409,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StandingDesk
|
id: StandingDesk
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 713
|
startLine: 719
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1438,7 +1438,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Lamp
|
id: Lamp
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 715
|
startLine: 721
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1467,7 +1467,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CeilingHanging
|
id: CeilingHanging
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 717
|
startLine: 723
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1496,7 +1496,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCoverWindow
|
id: CanCoverWindow
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 719
|
startLine: 725
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1525,7 +1525,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCoverDoor
|
id: CanCoverDoor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 721
|
startLine: 727
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1554,7 +1554,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Barbecue
|
id: Barbecue
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 723
|
startLine: 729
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1583,7 +1583,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TrashCan
|
id: TrashCan
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 725
|
startLine: 731
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1612,7 +1612,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanBeThrownAway
|
id: CanBeThrownAway
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 727
|
startLine: 733
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1641,7 +1641,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanBeScrapped
|
id: CanBeScrapped
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 729
|
startLine: 735
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1670,7 +1670,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ObstructedByRoofs
|
id: ObstructedByRoofs
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 731
|
startLine: 737
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1699,7 +1699,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RoofAttached
|
id: RoofAttached
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 733
|
startLine: 739
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1728,7 +1728,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FireLight
|
id: FireLight
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 735
|
startLine: 741
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1757,7 +1757,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ToyBox
|
id: ToyBox
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 737
|
startLine: 743
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1786,7 +1786,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChildStove
|
id: ChildStove
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 739
|
startLine: 745
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1815,7 +1815,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sandbox
|
id: Sandbox
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 741
|
startLine: 747
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1844,7 +1844,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JungleGym
|
id: JungleGym
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 743
|
startLine: 749
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1873,7 +1873,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Newspaper
|
id: Newspaper
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 745
|
startLine: 751
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1902,7 +1902,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CoffeeMachine
|
id: CoffeeMachine
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 747
|
startLine: 753
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1931,7 +1931,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CafeDisplayCase
|
id: CafeDisplayCase
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 749
|
startLine: 755
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1960,7 +1960,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GroundItem
|
id: GroundItem
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 751
|
startLine: 757
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -1989,7 +1989,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TreeDecor
|
id: TreeDecor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 753
|
startLine: 759
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2018,7 +2018,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpeningHoursSign
|
id: OpeningHoursSign
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 755
|
startLine: 761
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2047,7 +2047,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TeaKit
|
id: TeaKit
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 757
|
startLine: 763
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2076,7 +2076,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LandlinePhone
|
id: LandlinePhone
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 759
|
startLine: 765
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2105,7 +2105,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Potty
|
id: Potty
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 763
|
startLine: 769
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2134,7 +2134,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Treadmill
|
id: Treadmill
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 765
|
startLine: 771
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2163,7 +2163,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DumbbellHolder
|
id: DumbbellHolder
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 767
|
startLine: 773
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2192,7 +2192,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WoodworkingItem
|
id: WoodworkingItem
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 769
|
startLine: 775
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2221,7 +2221,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChangingStation
|
id: ChangingStation
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 771
|
startLine: 777
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2250,7 +2250,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Crib
|
id: Crib
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 773
|
startLine: 779
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2279,7 +2279,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BabyBathtub
|
id: BabyBathtub
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 775
|
startLine: 781
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2308,7 +2308,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 779
|
startLine: 785
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2343,7 +2343,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_Implicit
|
id: op_Implicit
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 782
|
startLine: 788
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2378,7 +2378,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_Implicit
|
id: op_Implicit
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 787
|
startLine: 793
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2413,7 +2413,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_BitwiseOr
|
id: op_BitwiseOr
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 792
|
startLine: 798
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2450,7 +2450,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_BitwiseAnd
|
id: op_BitwiseAnd
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 797
|
startLine: 803
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2487,7 +2487,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_ExclusiveOr
|
id: op_ExclusiveOr
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 802
|
startLine: 808
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -2524,7 +2524,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: op_OnesComplement
|
id: op_OnesComplement
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 807
|
startLine: 813
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ParentInfo
|
id: ParentInfo
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 842
|
startLine: 848
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -63,7 +63,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsAttached
|
id: IsAttached
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 847
|
startLine: 853
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -94,7 +94,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LayerDepth
|
id: LayerDepth
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 852
|
startLine: 858
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -125,7 +125,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ShouldDraw
|
id: ShouldDraw
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 856
|
startLine: 862
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -156,7 +156,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 869
|
startLine: 875
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -191,7 +191,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 878
|
startLine: 884
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -229,7 +229,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 887
|
startLine: 893
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -264,7 +264,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 895
|
startLine: 901
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -299,7 +299,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 903
|
startLine: 909
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Visibility
|
id: Visibility
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 816
|
startLine: 822
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -52,7 +52,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WhenVisible
|
id: WhenVisible
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 821
|
startLine: 827
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -80,7 +80,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WhenVisibleExt
|
id: WhenVisibleExt
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 825
|
startLine: 831
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -108,7 +108,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HideZoomedOut
|
id: HideZoomedOut
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 829
|
startLine: 835
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
@ -136,7 +136,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Static
|
id: Static
|
||||||
path: ../TinyLife/Objects/MapObject.cs
|
path: ../TinyLife/Objects/MapObject.cs
|
||||||
startLine: 834
|
startLine: 840
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Objects
|
namespace: TinyLife.Objects
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DrawDelegate
|
id: DrawDelegate
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2983
|
startLine: 2991
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -3447,7 +3447,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRegularVisitors
|
id: GetRegularVisitors
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 1933
|
startLine: 1941
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3478,7 +3478,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetAllLotEmployments
|
id: GetAllLotEmployments
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 1943
|
startLine: 1951
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3509,7 +3509,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MarkGroundTileDirtyForDrawing
|
id: MarkGroundTileDirtyForDrawing
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 1956
|
startLine: 1964
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3541,7 +3541,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MarkObjectDirtyForDrawing
|
id: MarkObjectDirtyForDrawing
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 1972
|
startLine: 1980
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3582,7 +3582,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PrepareForPermanentRemoval
|
id: PrepareForPermanentRemoval
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2003
|
startLine: 2011
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3610,7 +3610,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LoadStaticMap
|
id: LoadStaticMap
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2588
|
startLine: 2596
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3645,7 +3645,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsLotHidden
|
id: IsLotHidden
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2632
|
startLine: 2640
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3680,7 +3680,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetMapSampler
|
id: GetMapSampler
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2650
|
startLine: 2658
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3711,7 +3711,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateExternalPeople
|
id: UpdateExternalPeople
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2661
|
startLine: 2669
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -3749,7 +3749,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetVisibleWorldArea
|
id: GetVisibleWorldArea
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2755
|
startLine: 2763
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -313,7 +313,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/World/MapSection.cs
|
path: ../TinyLife/World/MapSection.cs
|
||||||
startLine: 119
|
startLine: 124
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
@ -341,7 +341,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetAllTiles
|
id: GetAllTiles
|
||||||
path: ../TinyLife/World/MapSection.cs
|
path: ../TinyLife/World/MapSection.cs
|
||||||
startLine: 155
|
startLine: 169
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ObjectUpdateDelegate
|
id: ObjectUpdateDelegate
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2968
|
startLine: 2976
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ObjectUpdateDelegateNoPhase
|
id: ObjectUpdateDelegateNoPhase
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2973
|
startLine: 2981
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateDelegate
|
id: UpdateDelegate
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2958
|
startLine: 2966
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateDelegateNoPhase
|
id: UpdateDelegateNoPhase
|
||||||
path: ../TinyLife/World/Map.cs
|
path: ../TinyLife/World/Map.cs
|
||||||
startLine: 2963
|
startLine: 2971
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.World
|
namespace: TinyLife.World
|
||||||
|
|
Loading…
Reference in a new issue