mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
0.38.0
This commit is contained in:
parent
1a4a2d8400
commit
7b63e6d966
284 changed files with 7397 additions and 5691 deletions
48
Changelog.md
48
Changelog.md
|
@ -1,3 +1,51 @@
|
||||||
|
# 0.38.0
|
||||||
|
*December 6, 2023*
|
||||||
|
|
||||||
|
![](media/changelog/0.38.0.png)
|
||||||
|
|
||||||
|
> Get Cozy Indoors and Lock Out Your Friends
|
||||||
|
|
||||||
|
Read the devlog [on the website](https://tinylifegame.com/devlogs/0.38.0/).
|
||||||
|
|
||||||
|
Additions
|
||||||
|
- Added various clutter items, including jars, palettes, washing up stuff, book stacks, sandbox decor
|
||||||
|
- Added various outdoor decorations, including sunflowers and clover patches
|
||||||
|
- Added five new wallpapers and three new tiles
|
||||||
|
- Added the poetic genius life goal
|
||||||
|
- Added the ability to disallow friends and strangers visiting by selecting a home lot's front door
|
||||||
|
|
||||||
|
Improvements
|
||||||
|
- Display a warning when mods haven't been tested on the current game version
|
||||||
|
- Display other maps as part of the main menu background
|
||||||
|
- Display the influence of an emotion on a skill in the skill tab
|
||||||
|
- Improved depth calculations for big ground objects like rugs
|
||||||
|
- Display a dropdown in the pronoun selection area that suggests default pronouns
|
||||||
|
- Slightly rebalanced skill item quality outcomes
|
||||||
|
- Display when a person is currently on vacation in their job tab
|
||||||
|
- Only start new jobs with an active vacation day if they should be at work immediately when getting the job
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
- Fixed mod error notification not being localized fully
|
||||||
|
- Fixed tooltips for missing lot conditions not being displayed when using a gamepad
|
||||||
|
- Fixed the name of the in-game hint for multiple floors being missing
|
||||||
|
- Fixed people claiming beds on other people's home lots
|
||||||
|
- Fixed TVs with more than one layer looking incorrect when displaying content
|
||||||
|
- Fixed the ability to load saves that don't have per-save options files
|
||||||
|
- Fixed lots at map borders causing a crash
|
||||||
|
- Fixed a crash when having an invalid language selected in the options
|
||||||
|
- Fixed being able to watch TV on different floors
|
||||||
|
- Fixed being entirely unable to order from lot staff
|
||||||
|
- Fixed the running animation showing while still stationary when jogging
|
||||||
|
|
||||||
|
API
|
||||||
|
- Added Mod.TestedVersionRange, a new property that mods are expected to implement, which allows specifying a SemVer version range of Tiny Life versions that the mod has successfully been tested with
|
||||||
|
- Overhauled the memories system to allow for multiple memories of each type to be present
|
||||||
|
- Updated to .NET 8
|
||||||
|
- Generified pathfinding code to allow using it for non-Person objects
|
||||||
|
- Allow launching into a save directly using the --save or --load argument
|
||||||
|
- Allow using the --ansi argument to include console colors in log files for modders
|
||||||
|
- Mods are now loaded in order of their DLL's name
|
||||||
|
|
||||||
# 0.37.5
|
# 0.37.5
|
||||||
*November 18, 2023*
|
*November 18, 2023*
|
||||||
|
|
||||||
|
|
|
@ -420,6 +420,7 @@
|
||||||
"TinyLife.Actions.ActionType.ToggleLight": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.ToggleLight": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.ToggleNewspapers": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.ToggleNewspapers": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.ToggleTryingForBaby": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.ToggleTryingForBaby": "TinyLife.Actions.ActionType.yml",
|
||||||
|
"TinyLife.Actions.ActionType.ToggleVisitors": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.TravelToMap": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.TravelToMap": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.Types": "TinyLife.Actions.ActionType.yml",
|
"TinyLife.Actions.ActionType.Types": "TinyLife.Actions.ActionType.yml",
|
||||||
"TinyLife.Actions.ActionType.TypeSettings": "TinyLife.Actions.ActionType.TypeSettings.yml",
|
"TinyLife.Actions.ActionType.TypeSettings": "TinyLife.Actions.ActionType.TypeSettings.yml",
|
||||||
|
@ -1064,6 +1065,8 @@
|
||||||
"TinyLife.Emotions.EmotionModifier.Name": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.Name": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.NegativeGauge": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.NegativeGauge": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.NoBabyBathtub": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.NoBabyBathtub": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
|
"TinyLife.Emotions.EmotionModifier.OnConditionUnmet": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
|
"TinyLife.Emotions.EmotionModifier.OnRanOut": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.OnVacation": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.OnVacation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.OrderCanceled": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.OrderCanceled": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.ParentalLeave": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.ParentalLeave": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
|
@ -1142,6 +1145,7 @@
|
||||||
"TinyLife.Emotions.EmotionModifier.WonTournament": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.WonTournament": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.WoodworkingSplinter": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.WoodworkingSplinter": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionModifier.WritersBlock": "TinyLife.Emotions.EmotionModifier.yml",
|
"TinyLife.Emotions.EmotionModifier.WritersBlock": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
|
"TinyLife.Emotions.EmotionModifier.WritingFrenzy": "TinyLife.Emotions.EmotionModifier.yml",
|
||||||
"TinyLife.Emotions.EmotionType": "TinyLife.Emotions.EmotionType.yml",
|
"TinyLife.Emotions.EmotionType": "TinyLife.Emotions.EmotionType.yml",
|
||||||
"TinyLife.Emotions.EmotionType.#ctor(System.String,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,TinyLife.Emotions.EmotionType.TypeCategory)": "TinyLife.Emotions.EmotionType.yml",
|
"TinyLife.Emotions.EmotionType.#ctor(System.String,MLEM.Textures.TextureRegion,Microsoft.Xna.Framework.Color,TinyLife.Emotions.EmotionType.TypeCategory)": "TinyLife.Emotions.EmotionType.yml",
|
||||||
"TinyLife.Emotions.EmotionType.Angry": "TinyLife.Emotions.EmotionType.yml",
|
"TinyLife.Emotions.EmotionType.Angry": "TinyLife.Emotions.EmotionType.yml",
|
||||||
|
@ -1446,6 +1450,7 @@
|
||||||
"TinyLife.Goals.LifeGoal.RewardPersonality": "TinyLife.Goals.LifeGoal.yml",
|
"TinyLife.Goals.LifeGoal.RewardPersonality": "TinyLife.Goals.LifeGoal.yml",
|
||||||
"TinyLife.Goals.LifeGoal.SmartKid": "TinyLife.Goals.LifeGoal.yml",
|
"TinyLife.Goals.LifeGoal.SmartKid": "TinyLife.Goals.LifeGoal.yml",
|
||||||
"TinyLife.Goals.LifeGoal.Stages": "TinyLife.Goals.LifeGoal.yml",
|
"TinyLife.Goals.LifeGoal.Stages": "TinyLife.Goals.LifeGoal.yml",
|
||||||
|
"TinyLife.Goals.LifeGoal.Writer": "TinyLife.Goals.LifeGoal.yml",
|
||||||
"TinyLife.Goals.ManualProgressGoal": "TinyLife.Goals.ManualProgressGoal.yml",
|
"TinyLife.Goals.ManualProgressGoal": "TinyLife.Goals.ManualProgressGoal.yml",
|
||||||
"TinyLife.Goals.ManualProgressGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)": "TinyLife.Goals.ManualProgressGoal.yml",
|
"TinyLife.Goals.ManualProgressGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)": "TinyLife.Goals.ManualProgressGoal.yml",
|
||||||
"TinyLife.Goals.ManualProgressGoal.GetProgress": "TinyLife.Goals.ManualProgressGoal.yml",
|
"TinyLife.Goals.ManualProgressGoal.GetProgress": "TinyLife.Goals.ManualProgressGoal.yml",
|
||||||
|
@ -1461,6 +1466,7 @@
|
||||||
"TinyLife.Goals.Memory.Validate(TinyLife.Objects.Person)": "TinyLife.Goals.Memory.yml",
|
"TinyLife.Goals.Memory.Validate(TinyLife.Objects.Person)": "TinyLife.Goals.Memory.yml",
|
||||||
"TinyLife.Goals.MemoryType": "TinyLife.Goals.MemoryType.yml",
|
"TinyLife.Goals.MemoryType": "TinyLife.Goals.MemoryType.yml",
|
||||||
"TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)": "TinyLife.Goals.MemoryType.yml",
|
"TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)": "TinyLife.Goals.MemoryType.yml",
|
||||||
|
"TinyLife.Goals.MemoryType.ActionDone": "TinyLife.Goals.MemoryType.yml",
|
||||||
"TinyLife.Goals.MemoryType.AskedForFood": "TinyLife.Goals.MemoryType.yml",
|
"TinyLife.Goals.MemoryType.AskedForFood": "TinyLife.Goals.MemoryType.yml",
|
||||||
"TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)": "TinyLife.Goals.MemoryType.yml",
|
"TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)": "TinyLife.Goals.MemoryType.yml",
|
||||||
"TinyLife.Goals.MemoryType.ConstructedType": "TinyLife.Goals.MemoryType.yml",
|
"TinyLife.Goals.MemoryType.ConstructedType": "TinyLife.Goals.MemoryType.yml",
|
||||||
|
@ -1569,6 +1575,7 @@
|
||||||
"TinyLife.Mods.Mod.Name": "TinyLife.Mods.Mod.yml",
|
"TinyLife.Mods.Mod.Name": "TinyLife.Mods.Mod.yml",
|
||||||
"TinyLife.Mods.Mod.PopulateOptions(MLEM.Ui.Elements.Group,TinyLife.Mods.ModInfo)": "TinyLife.Mods.Mod.yml",
|
"TinyLife.Mods.Mod.PopulateOptions(MLEM.Ui.Elements.Group,TinyLife.Mods.ModInfo)": "TinyLife.Mods.Mod.yml",
|
||||||
"TinyLife.Mods.Mod.RequiresHarmony": "TinyLife.Mods.Mod.yml",
|
"TinyLife.Mods.Mod.RequiresHarmony": "TinyLife.Mods.Mod.yml",
|
||||||
|
"TinyLife.Mods.Mod.TestedVersionRange": "TinyLife.Mods.Mod.yml",
|
||||||
"TinyLife.Mods.ModInfo": "TinyLife.Mods.ModInfo.yml",
|
"TinyLife.Mods.ModInfo": "TinyLife.Mods.ModInfo.yml",
|
||||||
"TinyLife.Mods.ModInfo.Content": "TinyLife.Mods.ModInfo.yml",
|
"TinyLife.Mods.ModInfo.Content": "TinyLife.Mods.ModInfo.yml",
|
||||||
"TinyLife.Mods.ModInfo.Dispose": "TinyLife.Mods.ModInfo.yml",
|
"TinyLife.Mods.ModInfo.Dispose": "TinyLife.Mods.ModInfo.yml",
|
||||||
|
@ -1911,6 +1918,7 @@
|
||||||
"TinyLife.Objects.FurnitureType.CafeSign": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.CafeSign": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Cattails": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Cattails": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.ChildStove": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.ChildStove": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.CloverPatch": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.CocktailShaker": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.CocktailShaker": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.ColorfulCandles": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.ColorfulCandles": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.ColoringBook": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.ColoringBook": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -1950,6 +1958,7 @@
|
||||||
"TinyLife.Objects.FurnitureType.GetTexture(System.String,System.Boolean)": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GetTexture(System.String,System.Boolean)": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.GetTextures(System.String,System.Int32,System.Func{MLEM.Misc.Direction2,System.Boolean})": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GetTextures(System.String,System.Int32,System.Func{MLEM.Misc.Direction2,System.Boolean})": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.GlassDinnerTable": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GlassDinnerTable": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.GlassJars": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.GlassPenCup": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GlassPenCup": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.GlassSingleTable": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GlassSingleTable": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.GrassPatch": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.GrassPatch": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -1993,6 +2002,7 @@
|
||||||
"TinyLife.Objects.FurnitureType.OrnateFlowerBed": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.OrnateFlowerBed": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.OrnateSingleBed": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.OrnateSingleBed": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.PaintBrush": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.PaintBrush": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.Palette": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.PaperPendantLight": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.PaperPendantLight": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.ParkTrashCan": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.ParkTrashCan": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Pen": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Pen": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -2020,6 +2030,7 @@
|
||||||
"TinyLife.Objects.FurnitureType.Rotations": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Rotations": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.RoundCeilingLamp": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.RoundCeilingLamp": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Sandbox": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Sandbox": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.SandboxStuff": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Settings": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Settings": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.SimpleBar": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.SimpleBar": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.SimpleBench": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.SimpleBench": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -2072,6 +2083,7 @@
|
||||||
"TinyLife.Objects.FurnitureType.StreetLamps": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.StreetLamps": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.StudyBook": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.StudyBook": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Succulents": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Succulents": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.Sunflowers": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.SwirlWoodworkingLamp": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.SwirlWoodworkingLamp": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.TallCountryFence": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.TallCountryFence": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.TeaKit": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.TeaKit": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -2128,8 +2140,10 @@
|
||||||
"TinyLife.Objects.FurnitureType.UnfinishedWoodwork": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.UnfinishedWoodwork": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.UnpreparedFood": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.UnpreparedFood": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.Vases": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.Vases": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.VerticalBookStack": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.VerticalDumbbellRack": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.VerticalDumbbellRack": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.VerticalPlanter": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.VerticalPlanter": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
"TinyLife.Objects.FurnitureType.WashingUpStuff": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.WheelieBin": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.WheelieBin": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.WindowPlants": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.WindowPlants": "TinyLife.Objects.FurnitureType.yml",
|
||||||
"TinyLife.Objects.FurnitureType.WinterTree": "TinyLife.Objects.FurnitureType.yml",
|
"TinyLife.Objects.FurnitureType.WinterTree": "TinyLife.Objects.FurnitureType.yml",
|
||||||
|
@ -2426,7 +2440,7 @@
|
||||||
"TinyLife.Objects.Person.ActionQueue": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.ActionQueue": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.AddEmotion(TinyLife.Emotions.EmotionModifier,System.Int32,System.TimeSpan,TinyLife.Emotions.IEmotionSource,System.Boolean)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.AddEmotion(TinyLife.Emotions.EmotionModifier,System.Int32,System.TimeSpan,TinyLife.Emotions.IEmotionSource,System.Boolean)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.AddJob(TinyLife.Goals.JobType,System.Int32)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.AddJob(TinyLife.Goals.JobType,System.Int32)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.AddMemory``1(TinyLife.Goals.MemoryType,TinyLife.Actions.ActionInfo,System.Boolean,System.Nullable{System.TimeSpan})": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.AddMemory``1(TinyLife.Goals.MemoryType,TinyLife.Actions.ActionInfo,System.Int32,System.Nullable{System.TimeSpan})": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.Age": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.Age": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.AgeGroups": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.AgeGroups": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.AllActions": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.AllActions": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2477,6 +2491,7 @@
|
||||||
"TinyLife.Objects.Person.GetCategories(TinyLife.Objects.Person)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetCategories(TinyLife.Objects.Person)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.GetCurrentGoals": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetCurrentGoals": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
|
"TinyLife.Objects.Person.GetEmotionSkillBoost(TinyLife.Skills.SkillType)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetFreeActionSpotInfo(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.GetFreeTalkingSpots(TinyLife.Objects.Person)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetFreeTalkingSpots(TinyLife.Objects.Person)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.GetHeldActionInfo": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.GetHeldActionInfo": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2538,7 +2553,6 @@
|
||||||
"TinyLife.Objects.Person.LotVisitCooldown": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.LotVisitCooldown": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.LowerEmotion(TinyLife.Emotions.EmotionType,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.LowerEmotion(TinyLife.Emotions.EmotionType,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.LowerEmotionModifier(TinyLife.Emotions.EmotionModifier,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.LowerEmotionModifier(TinyLife.Emotions.EmotionModifier,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.MaxRecentActionsAmount": "TinyLife.Objects.Person.yml",
|
|
||||||
"TinyLife.Objects.Person.Memories": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.Memories": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.Money": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.Money": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.MoveToMap(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.MoveToMap(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2561,7 +2575,9 @@
|
||||||
"TinyLife.Objects.Person.OnEmotionModifiersChanged": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnEmotionModifiersChanged": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnGetCurrentGoals": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnGetCurrentGoals": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnGetEfficiencyModifier": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnGetEfficiencyModifier": "TinyLife.Objects.Person.yml",
|
||||||
|
"TinyLife.Objects.Person.OnGetEmotionSkillBoost": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnGetPassiveActionPriority": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnGetPassiveActionPriority": "TinyLife.Objects.Person.yml",
|
||||||
|
"TinyLife.Objects.Person.OnGetPersonalitySkillBoost": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnGetWalkSpeed": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnGetWalkSpeed": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnJobChanged": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnJobChanged": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.OnLifeGoalChanged": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.OnLifeGoalChanged": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2587,7 +2603,7 @@
|
||||||
"TinyLife.Objects.Person.RemoveEmotion(TinyLife.Emotions.EmotionModifier)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RemoveEmotion(TinyLife.Emotions.EmotionModifier)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.RemoveHeldObject``1": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RemoveHeldObject``1": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.RemoveJob(TinyLife.Goals.JobType)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RemoveJob(TinyLife.Goals.JobType)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.RemoveMemory``1(TinyLife.Goals.MemoryType,System.Func{``0,System.Boolean})": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RemoveMemory``1(TinyLife.Goals.MemoryType,System.Int32,System.Func{``0,System.Boolean})": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.ResetToStatic(System.Boolean,System.Boolean)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.ResetToStatic(System.Boolean,System.Boolean)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.RestoreNeed(TinyLife.NeedType,System.Single,TinyLife.Actions.ActionInfo,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RestoreNeed(TinyLife.NeedType,System.Single,TinyLife.Actions.ActionInfo,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.RestoreNeed(TinyLife.NeedType,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.RestoreNeed(TinyLife.NeedType,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2602,6 +2618,7 @@
|
||||||
"TinyLife.Objects.Person.SetNewId(TinyLife.World.Map,System.Collections.Generic.IEnumerable{TinyLife.Objects.Person},System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture})": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.SetNewId(TinyLife.World.Map,System.Collections.Generic.IEnumerable{TinyLife.Objects.Person},System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture})": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.SetPregnancyStatus(System.Int32,System.Guid,System.Boolean)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.SetPregnancyStatus(System.Int32,System.Guid,System.Boolean)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.ShouldDrawHeldItem": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.ShouldDrawHeldItem": "TinyLife.Objects.Person.yml",
|
||||||
|
"TinyLife.Objects.Person.SkillBoostDelegate": "TinyLife.Objects.Person.SkillBoostDelegate.yml",
|
||||||
"TinyLife.Objects.Person.Skills": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.Skills": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.Speak(TinyLife.Objects.SpeakStyle,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.Speak(TinyLife.Objects.SpeakStyle,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
|
||||||
"TinyLife.Objects.Person.SpeakSounds": "TinyLife.Objects.Person.yml",
|
"TinyLife.Objects.Person.SpeakSounds": "TinyLife.Objects.Person.yml",
|
||||||
|
@ -2831,7 +2848,7 @@
|
||||||
"TinyLife.PerSaveOptions.Instance": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.Instance": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.LastGameVersion": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.LastGameVersion": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.LastMap": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.LastMap": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.Load(System.String)": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.Load(System.String,System.Boolean)": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.LoadedMods": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.LoadedMods": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.MapCustom": "TinyLife.PerSaveOptions.yml",
|
"TinyLife.PerSaveOptions.MapCustom": "TinyLife.PerSaveOptions.yml",
|
||||||
"TinyLife.PerSaveOptions.MapInfo": "TinyLife.PerSaveOptions.MapInfo.yml",
|
"TinyLife.PerSaveOptions.MapInfo": "TinyLife.PerSaveOptions.MapInfo.yml",
|
||||||
|
@ -2901,9 +2918,9 @@
|
||||||
"TinyLife.PersonalityType.Types": "TinyLife.PersonalityType.yml",
|
"TinyLife.PersonalityType.Types": "TinyLife.PersonalityType.yml",
|
||||||
"TinyLife.PersonalityType.Vegan": "TinyLife.PersonalityType.yml",
|
"TinyLife.PersonalityType.Vegan": "TinyLife.PersonalityType.yml",
|
||||||
"TinyLife.PersonalityType.Vegetarian": "TinyLife.PersonalityType.yml",
|
"TinyLife.PersonalityType.Vegetarian": "TinyLife.PersonalityType.yml",
|
||||||
|
"TinyLife.PersonalityType.Writer": "TinyLife.PersonalityType.yml",
|
||||||
"TinyLife.Relationship": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.AddMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Boolean,System.Nullable{System.TimeSpan})": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.AddMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Int32,System.Nullable{System.TimeSpan})": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.AddRecentSocial(TinyLife.Actions.ActionType)": "TinyLife.Relationship.yml",
|
|
||||||
"TinyLife.Relationship.CreatePanel(TinyLife.Objects.Person,TinyLife.Objects.Person,TinyLife.Relationship,Microsoft.Xna.Framework.Vector2)": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.CreatePanel(TinyLife.Objects.Person,TinyLife.Objects.Person,TinyLife.Relationship,Microsoft.Xna.Framework.Vector2)": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.Dating": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.Dating": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.FriendDisplayString": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.FriendDisplayString": "TinyLife.Relationship.yml",
|
||||||
|
@ -2911,14 +2928,12 @@
|
||||||
"TinyLife.Relationship.FriendPercentage": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.FriendPercentage": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.Genealogy": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.Genealogy": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.GetMemories``1(TinyLife.Goals.MemoryType,System.Boolean)": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.GetMemories``1(TinyLife.Goals.MemoryType,System.Boolean)": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.GetRecentSocialAmount(TinyLife.Actions.ActionType)": "TinyLife.Relationship.yml",
|
|
||||||
"TinyLife.Relationship.GetSocialEffectiveness(TinyLife.Actions.ActionType)": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.GetSocialEffectiveness(TinyLife.Actions.ActionType)": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.GetTimeSinceMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Func{``0,System.Boolean})": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.GetTimeSinceMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Func{``0,System.Boolean})": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.HadFirstKiss": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.HadFirstKiss": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.KnownJobType": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.KnownJobType": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.KnownPersonalityTypes": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.KnownPersonalityTypes": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.Max": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.Max": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.MaxRecentSocialsAmount": "TinyLife.Relationship.yml",
|
|
||||||
"TinyLife.Relationship.OnRelationshipPanel": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.OnRelationshipPanel": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.OnRelationshipTooltip": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.OnRelationshipTooltip": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.OtherPerson": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.OtherPerson": "TinyLife.Relationship.yml",
|
||||||
|
@ -2926,7 +2941,7 @@
|
||||||
"TinyLife.Relationship.PassiveFriendReduction": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.PassiveFriendReduction": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.PassiveRomanceReduction": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.PassiveRomanceReduction": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.PopulateTooltip(TinyLife.Objects.Person,TinyLife.Objects.Person,TinyLife.Relationship,MLEM.Ui.Elements.Tooltip)": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.PopulateTooltip(TinyLife.Objects.Person,TinyLife.Objects.Person,TinyLife.Relationship,MLEM.Ui.Elements.Tooltip)": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.RemoveMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Func{``0,System.Boolean})": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.RemoveMemory``1(TinyLife.Goals.MemoryType,System.Boolean,System.Int32,System.Func{``0,System.Boolean})": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.ResetToStatic(System.Boolean,System.Boolean)": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.ResetToStatic(System.Boolean,System.Boolean)": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.RomanceDisplayString": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.RomanceDisplayString": "TinyLife.Relationship.yml",
|
||||||
"TinyLife.Relationship.RomanceLevel": "TinyLife.Relationship.yml",
|
"TinyLife.Relationship.RomanceLevel": "TinyLife.Relationship.yml",
|
||||||
|
@ -3363,6 +3378,7 @@
|
||||||
"TinyLife.Uis.InGameHint.ClothesIntentions": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.ClothesIntentions": "TinyLife.Uis.InGameHint.yml",
|
||||||
"TinyLife.Uis.InGameHint.Condition": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.Condition": "TinyLife.Uis.InGameHint.yml",
|
||||||
"TinyLife.Uis.InGameHint.Display": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.Display": "TinyLife.Uis.InGameHint.yml",
|
||||||
|
"TinyLife.Uis.InGameHint.EmotionInfluences": "TinyLife.Uis.InGameHint.yml",
|
||||||
"TinyLife.Uis.InGameHint.HasBeenDisplayed": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.HasBeenDisplayed": "TinyLife.Uis.InGameHint.yml",
|
||||||
"TinyLife.Uis.InGameHint.Hints": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.Hints": "TinyLife.Uis.InGameHint.yml",
|
||||||
"TinyLife.Uis.InGameHint.Icon": "TinyLife.Uis.InGameHint.yml",
|
"TinyLife.Uis.InGameHint.Icon": "TinyLife.Uis.InGameHint.yml",
|
||||||
|
@ -3535,7 +3551,7 @@
|
||||||
"TinyLife.World.Door": "TinyLife.World.Door.yml",
|
"TinyLife.World.Door": "TinyLife.World.Door.yml",
|
||||||
"TinyLife.World.Door.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.Door.yml",
|
"TinyLife.World.Door.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.Door.yml",
|
||||||
"TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType)": "TinyLife.World.Door.yml",
|
"TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType)": "TinyLife.World.Door.yml",
|
||||||
"TinyLife.World.Door.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.Person)": "TinyLife.World.Door.yml",
|
"TinyLife.World.Door.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)": "TinyLife.World.Door.yml",
|
||||||
"TinyLife.World.DrawDelegate": "TinyLife.World.DrawDelegate.yml",
|
"TinyLife.World.DrawDelegate": "TinyLife.World.DrawDelegate.yml",
|
||||||
"TinyLife.World.ExportedHousehold": "TinyLife.World.ExportedHousehold.yml",
|
"TinyLife.World.ExportedHousehold": "TinyLife.World.ExportedHousehold.yml",
|
||||||
"TinyLife.World.ExportedHousehold.ClothesStorage": "TinyLife.World.ExportedHousehold.yml",
|
"TinyLife.World.ExportedHousehold.ClothesStorage": "TinyLife.World.ExportedHousehold.yml",
|
||||||
|
@ -3569,8 +3585,10 @@
|
||||||
"TinyLife.World.Household.ClothesStorage": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.ClothesStorage": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.DefaultMoney": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.DefaultMoney": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.Description": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.Description": "TinyLife.World.Household.yml",
|
||||||
|
"TinyLife.World.Household.DisallowFriendsVisiting": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.DisallowNewspapers": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.DisallowNewspapers": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.Export(System.Boolean,System.Boolean)": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.DisallowStrangersVisiting": "TinyLife.World.Household.yml",
|
||||||
|
"TinyLife.World.Household.Export(System.Boolean,System.Boolean,System.Boolean)": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.FurnitureStorage": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.FurnitureStorage": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.GetAverageFriendshipTo(TinyLife.Objects.Person)": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.GetAverageFriendshipTo(TinyLife.Objects.Person)": "TinyLife.World.Household.yml",
|
||||||
"TinyLife.World.Household.HasAdult(System.Collections.Generic.IEnumerable{TinyLife.Objects.Person})": "TinyLife.World.Household.yml",
|
"TinyLife.World.Household.HasAdult(System.Collections.Generic.IEnumerable{TinyLife.Objects.Person})": "TinyLife.World.Household.yml",
|
||||||
|
@ -3701,7 +3719,7 @@
|
||||||
"TinyLife.World.Map.GetMapSampler": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetMapSampler": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetObject``1(System.Guid)": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetObject``1(System.Guid)": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetObjects``1(MLEM.Misc.RectangleF)": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetObjects``1(MLEM.Misc.RectangleF)": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetPathCost(TinyLife.Objects.Person,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Point,System.Int32)": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetPathCost(TinyLife.Objects.MapObject,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Point,System.Int32)": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetPeople": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetPeople": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetRandomTile(System.Random,Microsoft.Xna.Framework.Vector2,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Predicate{Microsoft.Xna.Framework.Point})": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetRandomTile(System.Random,Microsoft.Xna.Framework.Vector2,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Predicate{Microsoft.Xna.Framework.Point})": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.GetRegularVisitors": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.GetRegularVisitors": "TinyLife.World.Map.yml",
|
||||||
|
@ -3741,8 +3759,10 @@
|
||||||
"TinyLife.World.Map.OnEventsAttachable": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.OnEventsAttachable": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.OnObjectAdded": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.OnObjectAdded": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.OnObjectRemoved": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.OnObjectRemoved": "TinyLife.World.Map.yml",
|
||||||
|
"TinyLife.World.Map.OnPathfindingNodeConstruct": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.OnUpdate": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.OnUpdate": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.PassiveUpdateMinutes": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.PassiveUpdateMinutes": "TinyLife.World.Map.yml",
|
||||||
|
"TinyLife.World.Map.PathfindingNodeConstructDelegate": "TinyLife.World.Map.PathfindingNodeConstructDelegate.yml",
|
||||||
"TinyLife.World.Map.PlaySound(Microsoft.Xna.Framework.Audio.SoundEffect,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Single,System.Boolean,System.Boolean)": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.PlaySound(Microsoft.Xna.Framework.Audio.SoundEffect,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Single,System.Boolean,System.Boolean)": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.PlaySound(Microsoft.Xna.Framework.Audio.SoundEffect,TinyLife.World.MapAudioEmitter,System.Single,System.Single,System.Boolean,System.Boolean)": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.PlaySound(Microsoft.Xna.Framework.Audio.SoundEffect,TinyLife.World.MapAudioEmitter,System.Single,System.Single,System.Boolean,System.Boolean)": "TinyLife.World.Map.yml",
|
||||||
"TinyLife.World.Map.PostValidate(System.Action{System.String},System.Action{System.Single})": "TinyLife.World.Map.yml",
|
"TinyLife.World.Map.PostValidate(System.Action{System.String},System.Action{System.Single})": "TinyLife.World.Map.yml",
|
||||||
|
@ -3784,7 +3804,7 @@
|
||||||
"TinyLife.World.Opening": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.Person)": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.Color": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.Color": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.Colors": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.Colors": "TinyLife.World.Opening.yml",
|
||||||
"TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.World.Opening.yml",
|
"TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.World.Opening.yml",
|
||||||
|
@ -3898,7 +3918,7 @@
|
||||||
"TinyLife.World.StairsType.Types": "TinyLife.World.StairsType.yml",
|
"TinyLife.World.StairsType.Types": "TinyLife.World.StairsType.yml",
|
||||||
"TinyLife.World.SwingingDoor": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor": "TinyLife.World.SwingingDoor.yml",
|
||||||
"TinyLife.World.SwingingDoor.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor.#ctor(TinyLife.World.OpeningType,System.Int32[])": "TinyLife.World.SwingingDoor.yml",
|
||||||
"TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.Person)": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)": "TinyLife.World.SwingingDoor.yml",
|
||||||
"TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.World.SwingingDoor.yml",
|
||||||
"TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)": "TinyLife.World.SwingingDoor.yml",
|
||||||
"TinyLife.World.SwingingDoor.Lock": "TinyLife.World.SwingingDoor.yml",
|
"TinyLife.World.SwingingDoor.Lock": "TinyLife.World.SwingingDoor.yml",
|
||||||
|
|
|
@ -78,7 +78,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Action
|
id: Action
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -145,7 +145,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Random
|
id: Random
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -174,7 +174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InProgressTime
|
id: InProgressTime
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -206,7 +206,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -238,7 +238,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -277,7 +277,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Info
|
id: Info
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -316,7 +316,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Id
|
id: Id
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -355,7 +355,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StartedAutomatically
|
id: StartedAutomatically
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -396,7 +396,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Parent
|
id: Parent
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -427,7 +427,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -458,7 +458,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ElapsedTime
|
id: ElapsedTime
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -499,7 +499,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PlayerPromptOpen
|
id: PlayerPromptOpen
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -530,7 +530,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ForceResult
|
id: ForceResult
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -559,7 +559,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -594,7 +594,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -632,7 +632,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -660,7 +660,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -701,7 +701,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -732,7 +732,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -764,7 +764,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -799,7 +799,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryForceResult
|
id: TryForceResult
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -840,7 +840,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -875,7 +875,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanStartNow
|
id: CanStartNow
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -906,7 +906,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -941,7 +941,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -976,7 +976,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetIconObject
|
id: GetIconObject
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1007,7 +1007,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CausesExtremelyFastSpeed
|
id: CausesExtremelyFastSpeed
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1038,7 +1038,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1069,7 +1069,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanEnqueueConversation
|
id: CanEnqueueConversation
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1107,7 +1107,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1138,7 +1138,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnChildCompleted
|
id: OnChildCompleted
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1179,7 +1179,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenPlayerPrompt
|
id: OpenPlayerPrompt
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1235,7 +1235,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenYesNoPrompt
|
id: OpenYesNoPrompt
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1281,7 +1281,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenTextPrompt
|
id: OpenTextPrompt
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1333,7 +1333,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenChoicePrompt
|
id: OpenChoicePrompt
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1368,7 +1368,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SpeakAlone
|
id: SpeakAlone
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1430,7 +1430,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ThinkAlone
|
id: ThinkAlone
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1489,7 +1489,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SpeakInConversation
|
id: SpeakInConversation
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1560,7 +1560,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ResetSpeech
|
id: ResetSpeech
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1588,7 +1588,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FacePartner
|
id: FacePartner
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1622,7 +1622,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CompleteIfNeedFull
|
id: CompleteIfNeedFull
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1660,7 +1660,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CompleteIfTimeUp
|
id: CompleteIfTimeUp
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1710,7 +1710,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CancelIfEmotional
|
id: CancelIfEmotional
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1752,7 +1752,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sit
|
id: Sit
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1796,7 +1796,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetChildren
|
id: GetChildren
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1834,7 +1834,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetChild
|
id: GetChild
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1878,7 +1878,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PickUpAndGoTo
|
id: PickUpAndGoTo
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1925,7 +1925,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PickUpAndGoTo
|
id: PickUpAndGoTo
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -1972,7 +1972,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetFreeChair
|
id: GetFreeChair
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2010,7 +2010,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetFreeChairs
|
id: GetFreeChairs
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2054,7 +2054,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSeatCategory
|
id: GetSeatCategory
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2089,7 +2089,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindAllFreePeople
|
id: FindAllFreePeople
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2151,7 +2151,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindAllFreeFurniture
|
id: FindAllFreeFurniture
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2216,7 +2216,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindAllFreeWalls
|
id: FindAllFreeWalls
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2271,7 +2271,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindAllFreeGround
|
id: FindAllFreeGround
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2324,7 +2324,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindFreeFurniture
|
id: FindFreeFurniture
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2380,7 +2380,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindAllActionObjects
|
id: FindAllActionObjects
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2424,7 +2424,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindValidActionObjects
|
id: FindValidActionObjects
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2480,7 +2480,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRandomValidArguments
|
id: GetRandomValidArguments
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2524,7 +2524,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetTableSpot
|
id: GetTableSpot
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2562,7 +2562,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InvokeForBoth
|
id: InvokeForBoth
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2603,7 +2603,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2641,7 +2641,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsInappropriate
|
id: IsInappropriate
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
@ -2679,7 +2679,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Action.cs
|
path: TinyLife/Actions/Action.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsLotContentVisible
|
id: IsLotContentVisible
|
||||||
path: ../TinyLife/Actions/Action.cs
|
path: ../TinyLife/Actions/Action.cs
|
||||||
|
|
|
@ -32,7 +32,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionArgument
|
id: ActionArgument
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -78,7 +78,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -107,7 +107,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddedConstructorArguments
|
id: AddedConstructorArguments
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -136,7 +136,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PassivePriority
|
id: PassivePriority
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -165,7 +165,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecute
|
id: CanExecute
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -194,7 +194,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DisplayName
|
id: DisplayName
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -223,7 +223,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Description
|
id: Description
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -252,7 +252,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CustomLayout
|
id: CustomLayout
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -281,7 +281,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -319,7 +319,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -357,7 +357,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -392,7 +392,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -423,7 +423,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanBeExecuted
|
id: CanBeExecuted
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -464,7 +464,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPassivePriority
|
id: GetPassivePriority
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -499,7 +499,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FreePeople
|
id: FreePeople
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -543,7 +543,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StoredFurniture
|
id: StoredFurniture
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -584,7 +584,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ImageLayout
|
id: ImageLayout
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
@ -628,7 +628,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionArgument.cs
|
path: TinyLife/Actions/ActionArgument.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PortraitLayout
|
id: PortraitLayout
|
||||||
path: ../TinyLife/Actions/ActionArgument.cs
|
path: ../TinyLife/Actions/ActionArgument.cs
|
||||||
|
|
|
@ -39,7 +39,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionInfo
|
id: ActionInfo
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -95,7 +95,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -126,7 +126,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionLocation
|
id: ActionLocation
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -165,7 +165,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionFloor
|
id: ActionFloor
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionSpot
|
id: ActionSpot
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -238,7 +238,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentMap
|
id: CurrentMap
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -269,7 +269,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoalMap
|
id: GoalMap
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -300,7 +300,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Lot
|
id: Lot
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -331,7 +331,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetActionObject
|
id: GetActionObject
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -371,7 +371,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddAuxiliaryLocation
|
id: AddAuxiliaryLocation
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -414,7 +414,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddAuxiliaryLocation
|
id: AddAuxiliaryLocation
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -457,7 +457,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInvolvedLocations
|
id: GetInvolvedLocations
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -488,7 +488,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddAuxiliaryObject
|
id: AddAuxiliaryObject
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -525,7 +525,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInvolvedObjects
|
id: GetInvolvedObjects
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -572,7 +572,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInvolvedObject
|
id: GetInvolvedObject
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -622,7 +622,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInvolvedActionSpot
|
id: GetInvolvedActionSpot
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -657,7 +657,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ToFreeActionSpot
|
id: ToFreeActionSpot
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -665,7 +665,7 @@ items:
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
summary: "\nReturns the first free action spot that matches the given <xref href=\"TinyLife.Objects.ObjectCategory\" data-throw-if-not-resolved=\"false\"></xref> flag for this action's <xref href=\"TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this action has no action object and <code data-dev-comment-type=\"paramref\" class=\"paramref\">context</code> contains <xref href=\"TinyLife.Objects.ObjectCategory.Ground\" data-throw-if-not-resolved=\"false\"></xref>, <pre><code>this</code></pre> is returned.\n"
|
summary: "\nReturns the first free action spot that matches the given <xref href=\"TinyLife.Objects.ObjectCategory\" data-throw-if-not-resolved=\"false\"></xref> flag for this action's <xref href=\"TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this action has no action object and <code data-dev-comment-type=\"paramref\" class=\"paramref\">context</code> contains <xref href=\"TinyLife.Objects.ObjectCategory.Ground\" data-throw-if-not-resolved=\"false\"></xref>, <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/this\">this</a> is returned.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public ActionInfo ToFreeActionSpot(ObjectCategory context = null)
|
content: public ActionInfo ToFreeActionSpot(ObjectCategory context = null)
|
||||||
|
@ -692,7 +692,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInvolvedObjectIds
|
id: GetInvolvedObjectIds
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -723,7 +723,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -757,7 +757,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromLocation
|
id: FromLocation
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -804,7 +804,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromLocation
|
id: FromLocation
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -851,7 +851,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromObjectGeneric
|
id: FromObjectGeneric
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -901,7 +901,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromObjectGeneric
|
id: FromObjectGeneric
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -939,7 +939,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromSelf
|
id: FromSelf
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
@ -974,7 +974,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionInfo.cs
|
path: TinyLife/Actions/ActionInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FromActionInfo
|
id: FromActionInfo
|
||||||
path: ../TinyLife/Actions/ActionInfo.cs
|
path: ../TinyLife/Actions/ActionInfo.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AiSettings
|
id: AiSettings
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -59,7 +59,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SolvedNeeds
|
id: SolvedNeeds
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -88,7 +88,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PassivePriority
|
id: PassivePriority
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -117,7 +117,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanDoRandomly
|
id: CanDoRandomly
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -146,7 +146,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanDoAtAnyPoint
|
id: CanDoAtAnyPoint
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -175,7 +175,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NeedsFreeActionSpot
|
id: NeedsFreeActionSpot
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IgnoreAiDisabled
|
id: IgnoreAiDisabled
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -233,7 +233,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EnqueuePriority
|
id: EnqueuePriority
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -262,7 +262,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
|
|
@ -15,7 +15,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecuteDelegate
|
id: CanExecuteDelegate
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
|
|
@ -44,7 +44,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TypeSettings
|
id: TypeSettings
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -82,7 +82,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -111,7 +111,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NameWithoutCategory
|
id: NameWithoutCategory
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -142,7 +142,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Categories
|
id: Categories
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -173,7 +173,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Texture
|
id: Texture
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -202,7 +202,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Context
|
id: Context
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -231,7 +231,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecute
|
id: CanExecute
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -260,7 +260,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConstructedType
|
id: ConstructedType
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -289,7 +289,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConstructorArguments
|
id: ConstructorArguments
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -318,7 +318,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PossibleArguments
|
id: PossibleArguments
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -347,7 +347,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MaximumArguments
|
id: MaximumArguments
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -376,7 +376,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NoValidArgumentsResult
|
id: NoValidArgumentsResult
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -405,7 +405,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Ai
|
id: Ai
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -434,7 +434,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsInappropriateElsewhere
|
id: IsInappropriateElsewhere
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -463,7 +463,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IconName
|
id: IconName
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -492,7 +492,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -521,7 +521,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredSkill
|
id: RequiredSkill
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -550,7 +550,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredAges
|
id: RequiredAges
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -579,7 +579,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredEmotion
|
id: RequiredEmotion
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -608,7 +608,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPersonality
|
id: RequiredPersonality
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -637,7 +637,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IgnoreObjectConditions
|
id: IgnoreObjectConditions
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -666,7 +666,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPartnerEmployment
|
id: RequiredPartnerEmployment
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -695,7 +695,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPartnerAges
|
id: RequiredPartnerAges
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -724,7 +724,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredJob
|
id: RequiredJob
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -753,7 +753,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -794,7 +794,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -825,7 +825,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetData
|
id: SetData
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -862,7 +862,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetData
|
id: SetData
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -901,7 +901,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetData
|
id: GetData
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
@ -940,7 +940,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ActionType.cs
|
path: TinyLife/Actions/ActionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDataKeys
|
id: GetDataKeys
|
||||||
path: ../TinyLife/Actions/ActionType.cs
|
path: ../TinyLife/Actions/ActionType.cs
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BehaviorAction
|
id: BehaviorAction
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -146,7 +146,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Behavior
|
id: Behavior
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -179,7 +179,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -212,7 +212,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BehaviorAction
|
id: BehaviorAction
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -141,7 +141,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -174,7 +174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Behavior
|
id: Behavior
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -205,7 +205,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -242,7 +242,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -277,7 +277,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -309,7 +309,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateLastActions
|
id: CreateLastActions
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -341,7 +341,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -370,7 +370,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -412,7 +412,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetIconObject
|
id: GetIconObject
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -444,7 +444,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -480,7 +480,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
@ -513,7 +513,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/BehaviorAction.cs
|
path: TinyLife/Actions/BehaviorAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/BehaviorAction.cs
|
path: ../TinyLife/Actions/BehaviorAction.cs
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionBehavior
|
id: ActionBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -72,7 +72,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Action
|
id: Action
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -101,7 +101,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -132,7 +132,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -167,7 +167,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -198,7 +198,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateLastActions
|
id: CreateLastActions
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -229,7 +229,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -257,7 +257,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -298,7 +298,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetIconObject
|
id: GetIconObject
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -329,7 +329,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -364,7 +364,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -396,7 +396,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
@ -431,7 +431,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateDefaultInstance
|
id: CreateDefaultInstance
|
||||||
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ActionBehavior.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComputerBehavior
|
id: ComputerBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
@ -70,7 +70,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
@ -108,7 +108,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
@ -152,7 +152,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
@ -181,7 +181,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
@ -223,7 +223,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetAndSitDownBehavior
|
id: GetAndSitDownBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -69,7 +69,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -113,7 +113,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -145,7 +145,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -174,7 +174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -216,7 +216,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetIconObject
|
id: GetIconObject
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -248,7 +248,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -284,7 +284,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInteractingItem
|
id: GetInteractingItem
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
@ -321,7 +321,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetInteractingItemForAction
|
id: GetInteractingItemForAction
|
||||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PhoneBehavior
|
id: PhoneBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -67,7 +67,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -104,7 +104,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -136,7 +136,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetIconObject
|
id: GetIconObject
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -168,7 +168,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -197,7 +197,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -239,7 +239,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
@ -275,7 +275,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PickUpOrSpawnBehavior
|
id: PickUpOrSpawnBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
|
@ -69,7 +69,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
|
@ -117,7 +117,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
|
@ -149,7 +149,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/PickUpOrSpawnBehavior.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ReadBehavior
|
id: ReadBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -68,7 +68,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -100,7 +100,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -148,7 +148,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -177,7 +177,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -219,7 +219,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
@ -255,7 +255,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SinkBehavior
|
id: SinkBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
|
@ -67,7 +67,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
|
@ -102,7 +102,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
|
@ -134,7 +134,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
|
@ -176,7 +176,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/SinkBehavior.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkAtDeskObjectBehavior
|
id: WorkAtDeskObjectBehavior
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -71,7 +71,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsWorking
|
id: IsWorking
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -102,7 +102,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -137,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -178,7 +178,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -210,7 +210,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
@ -252,7 +252,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
path: ../TinyLife/Actions/Behaviors/WorkAtDeskObjectBehavior.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ResultType
|
id: ResultType
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -47,7 +47,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Valid
|
id: Valid
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -75,7 +75,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Invalid
|
id: Invalid
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -103,7 +103,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Hidden
|
id: Hidden
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
|
|
@ -26,7 +26,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecuteResult
|
id: CanExecuteResult
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -66,7 +66,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -104,7 +104,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -135,7 +135,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -166,7 +166,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Valid
|
id: Valid
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -193,7 +193,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Hidden
|
id: Hidden
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -220,7 +220,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ObjectBroken
|
id: ObjectBroken
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -247,7 +247,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NotYours
|
id: NotYours
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -274,7 +274,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NotEnoughMoney
|
id: NotEnoughMoney
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -301,7 +301,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NotEnoughSkill
|
id: NotEnoughSkill
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -328,7 +328,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LotStaffOnly
|
id: LotStaffOnly
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
@ -355,7 +355,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CanExecuteResult.cs
|
path: TinyLife/Actions/CanExecuteResult.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NoOneFree
|
id: NoOneFree
|
||||||
path: ../TinyLife/Actions/CanExecuteResult.cs
|
path: ../TinyLife/Actions/CanExecuteResult.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Option
|
id: Option
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -62,7 +62,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -91,7 +91,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SuccessAction
|
id: SuccessAction
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -120,7 +120,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FailAction
|
id: FailAction
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -149,7 +149,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SuccessChance
|
id: SuccessChance
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -178,7 +178,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -222,7 +222,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -266,7 +266,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -316,7 +316,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Execute
|
id: Execute
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChoicePromptInfo
|
id: ChoicePromptInfo
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -58,7 +58,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -87,7 +87,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Options
|
id: Options
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -116,7 +116,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
@ -154,7 +154,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/ChoicePromptInfo.cs
|
path: TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreatePromptContent
|
id: CreatePromptContent
|
||||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CleanEverythingAction
|
id: CleanEverythingAction
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -125,7 +125,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CleaningActions
|
id: CleaningActions
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -154,7 +154,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -192,7 +192,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -234,7 +234,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -270,7 +270,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
@ -302,7 +302,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CleanEverythingAction.cs
|
path: TinyLife/Actions/CleanEverythingAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
path: ../TinyLife/Actions/CleanEverythingAction.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CompletionType.cs
|
path: TinyLife/Actions/CompletionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CompletionType
|
id: CompletionType
|
||||||
path: ../TinyLife/Actions/CompletionType.cs
|
path: ../TinyLife/Actions/CompletionType.cs
|
||||||
|
@ -52,7 +52,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CompletionType.cs
|
path: TinyLife/Actions/CompletionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Active
|
id: Active
|
||||||
path: ../TinyLife/Actions/CompletionType.cs
|
path: ../TinyLife/Actions/CompletionType.cs
|
||||||
|
@ -80,7 +80,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CompletionType.cs
|
path: TinyLife/Actions/CompletionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Completed
|
id: Completed
|
||||||
path: ../TinyLife/Actions/CompletionType.cs
|
path: ../TinyLife/Actions/CompletionType.cs
|
||||||
|
@ -108,7 +108,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CompletionType.cs
|
path: TinyLife/Actions/CompletionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Failed
|
id: Failed
|
||||||
path: ../TinyLife/Actions/CompletionType.cs
|
path: ../TinyLife/Actions/CompletionType.cs
|
||||||
|
@ -136,7 +136,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/CompletionType.cs
|
path: TinyLife/Actions/CompletionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Canceled
|
id: Canceled
|
||||||
path: ../TinyLife/Actions/CompletionType.cs
|
path: ../TinyLife/Actions/CompletionType.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DebugAction
|
id: DebugAction
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
@ -126,7 +126,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
@ -164,7 +164,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Run
|
id: Run
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
@ -192,7 +192,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
@ -224,7 +224,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
@ -257,7 +257,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DebugAction.cs
|
path: TinyLife/Actions/DebugAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Create
|
id: Create
|
||||||
path: ../TinyLife/Actions/DebugAction.cs
|
path: ../TinyLife/Actions/DebugAction.cs
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DeferredAction
|
id: DeferredAction
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -127,7 +127,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -160,7 +160,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InProgressTime
|
id: InProgressTime
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -193,7 +193,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Action
|
id: Action
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -224,7 +224,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -259,7 +259,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -297,7 +297,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateAction
|
id: CreateAction
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -328,7 +328,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -357,7 +357,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -399,7 +399,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -435,7 +435,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -471,7 +471,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
@ -503,7 +503,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DeferredAction.cs
|
path: TinyLife/Actions/DeferredAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/DeferredAction.cs
|
path: ../TinyLife/Actions/DeferredAction.cs
|
||||||
|
|
|
@ -25,7 +25,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DieAction
|
id: DieAction
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -126,7 +126,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reason
|
id: Reason
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -165,7 +165,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -203,7 +203,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -232,7 +232,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -264,7 +264,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -300,7 +300,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanEnqueueConversation
|
id: CanEnqueueConversation
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -339,7 +339,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -381,7 +381,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -413,7 +413,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
@ -446,7 +446,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DieAction.cs
|
path: TinyLife/Actions/DieAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Enqueue
|
id: Enqueue
|
||||||
path: ../TinyLife/Actions/DieAction.cs
|
path: ../TinyLife/Actions/DieAction.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DriveAction
|
id: DriveAction
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -131,7 +131,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -166,7 +166,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindPath
|
id: FindPath
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -205,7 +205,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSpeed
|
id: GetSpeed
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -237,7 +237,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnPathReady
|
id: OnPathReady
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -266,7 +266,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -308,7 +308,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
@ -340,7 +340,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/DriveAction.cs
|
path: TinyLife/Actions/DriveAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/DriveAction.cs
|
path: ../TinyLife/Actions/DriveAction.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Emote
|
id: Emote
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -60,7 +60,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Texture
|
id: Texture
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -89,7 +89,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Categories
|
id: Categories
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -118,7 +118,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Draw
|
id: Draw
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -171,7 +171,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRandomEmote
|
id: GetRandomEmote
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -206,7 +206,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetEmotes
|
id: GetEmotes
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -241,7 +241,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmoteCategory
|
id: EmoteCategory
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -62,7 +62,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: General
|
id: General
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -88,7 +88,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Travel
|
id: Travel
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -114,7 +114,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Negative
|
id: Negative
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -140,7 +140,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Flirty
|
id: Flirty
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -166,7 +166,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Unable
|
id: Unable
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -192,7 +192,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Food
|
id: Food
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -218,7 +218,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Object
|
id: Object
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
@ -244,7 +244,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Emote.cs
|
path: TinyLife/Actions/Emote.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Emotion
|
id: Emotion
|
||||||
path: ../TinyLife/Actions/Emote.cs
|
path: ../TinyLife/Actions/Emote.cs
|
||||||
|
|
|
@ -21,11 +21,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoHereAction
|
id: GoHereAction
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 13
|
startLine: 14
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -139,11 +139,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WalkSpeedMultiplier
|
id: WalkSpeedMultiplier
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 20
|
startLine: 21
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -178,11 +178,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DriveSpeedMultiplier
|
id: DriveSpeedMultiplier
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 26
|
startLine: 27
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -217,11 +217,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 29
|
startLine: 30
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -255,11 +255,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 32
|
startLine: 33
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -287,11 +287,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 88
|
startLine: 89
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -319,11 +319,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/GoHereAction.cs
|
path: TinyLife/Actions/GoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/GoHereAction.cs
|
path: ../TinyLife/Actions/GoHereAction.cs
|
||||||
startLine: 93
|
startLine: 94
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
|
|
@ -24,7 +24,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MultiActionHandler
|
id: MultiActionHandler
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -73,7 +73,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnInitialize
|
id: OnInitialize
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -102,7 +102,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Actions
|
id: Actions
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -143,7 +143,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Current
|
id: Current
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -174,7 +174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -209,7 +209,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -247,7 +247,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -291,7 +291,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -329,7 +329,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
@ -360,7 +360,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/MultiActionHandler.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UnderlyingActionHandler
|
id: UnderlyingActionHandler
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -72,7 +72,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Action
|
id: Action
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -113,7 +113,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -148,7 +148,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -193,7 +193,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InitializeExact
|
id: InitializeExact
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -225,7 +225,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -266,7 +266,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -304,7 +304,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
@ -335,7 +335,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
path: ../TinyLife/Actions/Handlers/UnderlyingActionHandler.cs
|
||||||
|
|
|
@ -33,7 +33,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HelpAction
|
id: HelpAction
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -163,7 +163,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsHelper
|
id: IsHelper
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -194,7 +194,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HelpedAction
|
id: HelpedAction
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -225,7 +225,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Helper
|
id: Helper
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -256,7 +256,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -293,7 +293,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -332,7 +332,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateHelpedAction
|
id: CreateHelpedAction
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -367,7 +367,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateHelpedAction
|
id: UpdateHelpedAction
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -411,7 +411,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnHelpedActionCompleted
|
id: OnHelpedActionCompleted
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -446,7 +446,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -482,7 +482,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -518,7 +518,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -554,7 +554,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -586,7 +586,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -618,7 +618,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InitializeConversation
|
id: InitializeConversation
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -647,7 +647,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateConversation
|
id: UpdateConversation
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -689,7 +689,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -722,7 +722,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnChildCompleted
|
id: OnChildCompleted
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
@ -764,7 +764,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HelpAction.cs
|
path: TinyLife/Actions/HelpAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateActions
|
id: CreateActions
|
||||||
path: ../TinyLife/Actions/HelpAction.cs
|
path: ../TinyLife/Actions/HelpAction.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HoldingPersonAction
|
id: HoldingPersonAction
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -157,7 +157,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsHoldingParty
|
id: IsHoldingParty
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -188,7 +188,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -223,7 +223,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -261,7 +261,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -293,7 +293,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateLastActions
|
id: CreateLastActions
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -325,7 +325,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
@ -361,7 +361,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/HoldingPersonAction.cs
|
path: TinyLife/Actions/HoldingPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
path: ../TinyLife/Actions/HoldingPersonAction.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Stage
|
id: Stage
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -48,7 +48,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: First
|
id: First
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -76,7 +76,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Main
|
id: Main
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -104,7 +104,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Last
|
id: Last
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -132,7 +132,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Done
|
id: Done
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
|
|
@ -37,7 +37,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MultiAction
|
id: MultiAction
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -147,7 +147,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Handler
|
id: Handler
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -186,7 +186,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MainElapsedTime
|
id: MainElapsedTime
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -227,7 +227,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InProgressTime
|
id: InProgressTime
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -260,7 +260,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentStage
|
id: CurrentStage
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -301,7 +301,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -336,7 +336,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -374,7 +374,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -405,7 +405,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateLastActions
|
id: CreateLastActions
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -436,7 +436,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -464,7 +464,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -495,7 +495,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -536,7 +536,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -568,7 +568,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PreInitialize
|
id: PreInitialize
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -596,7 +596,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PreCompleted
|
id: PreCompleted
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -628,7 +628,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -670,7 +670,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -699,7 +699,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -731,7 +731,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -764,7 +764,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -800,7 +800,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -836,7 +836,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanStartNow
|
id: CanStartNow
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
@ -868,7 +868,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/MultiAction.cs
|
path: TinyLife/Actions/MultiAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoToActionLocation
|
id: GoToActionLocation
|
||||||
path: ../TinyLife/Actions/MultiAction.cs
|
path: ../TinyLife/Actions/MultiAction.cs
|
||||||
|
|
|
@ -26,7 +26,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OrderFromStaffAction
|
id: OrderFromStaffAction
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -160,7 +160,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ImportantObject
|
id: ImportantObject
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -191,7 +191,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PickUpOrderAction
|
id: PickUpOrderAction
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -222,7 +222,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MaxDistanceFromObject
|
id: MaxDistanceFromObject
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -253,7 +253,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -291,7 +291,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -326,7 +326,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreatePrepareAction
|
id: CreatePrepareAction
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -361,7 +361,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -393,7 +393,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateConversation
|
id: UpdateConversation
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -435,7 +435,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsConversationCompleted
|
id: IsConversationCompleted
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -467,7 +467,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
@ -503,7 +503,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||||
|
|
|
@ -24,7 +24,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OutOfTownAction
|
id: OutOfTownAction
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -141,7 +141,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: NeedsToTakeCareOf
|
id: NeedsToTakeCareOf
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -170,7 +170,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -214,7 +214,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -255,7 +255,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -287,7 +287,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -316,7 +316,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -358,7 +358,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetNextAction
|
id: GetNextAction
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -394,7 +394,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanEnqueueConversation
|
id: CanEnqueueConversation
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
@ -433,7 +433,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/OutOfTownAction.cs
|
path: TinyLife/Actions/OutOfTownAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CausesExtremelyFastSpeed
|
id: CausesExtremelyFastSpeed
|
||||||
path: ../TinyLife/Actions/OutOfTownAction.cs
|
path: ../TinyLife/Actions/OutOfTownAction.cs
|
||||||
|
|
|
@ -28,7 +28,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PathfindAction
|
id: PathfindAction
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -134,7 +134,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SpeedMultiplier
|
id: SpeedMultiplier
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -173,7 +173,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Path
|
id: Path
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PathReady
|
id: PathReady
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -215,11 +215,11 @@ items:
|
||||||
summary: "\nA property that determines whether or not the <xref href=\"TinyLife.Actions.PathfindAction.Path\" data-throw-if-not-resolved=\"false\"></xref> has been calculated.\n"
|
summary: "\nA property that determines whether or not the <xref href=\"TinyLife.Actions.PathfindAction.Path\" data-throw-if-not-resolved=\"false\"></xref> has been calculated.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: protected bool PathReady { get; }
|
content: public bool PathReady { get; }
|
||||||
parameters: []
|
parameters: []
|
||||||
return:
|
return:
|
||||||
type: System.Boolean
|
type: System.Boolean
|
||||||
content.vb: Protected Property PathReady As Boolean
|
content.vb: Public Property PathReady As Boolean
|
||||||
overload: TinyLife.Actions.PathfindAction.PathReady*
|
overload: TinyLife.Actions.PathfindAction.PathReady*
|
||||||
- uid: TinyLife.Actions.PathfindAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
- uid: TinyLife.Actions.PathfindAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||||
commentId: M:TinyLife.Actions.PathfindAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
commentId: M:TinyLife.Actions.PathfindAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||||
|
@ -235,7 +235,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -273,7 +273,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -308,7 +308,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindPath
|
id: FindPath
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -346,7 +346,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSpeed
|
id: GetSpeed
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -377,7 +377,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnPathReady
|
id: OnPathReady
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -405,7 +405,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -434,7 +434,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -476,7 +476,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -508,7 +508,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
@ -541,7 +541,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindAction.cs
|
path: TinyLife/Actions/PathfindAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/PathfindAction.cs
|
path: ../TinyLife/Actions/PathfindAction.cs
|
||||||
|
|
|
@ -25,7 +25,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PathfindToPersonAction
|
id: PathfindToPersonAction
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -129,7 +129,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WalkSpeedMultiplier
|
id: WalkSpeedMultiplier
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -168,7 +168,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DriveSpeedMultiplier
|
id: DriveSpeedMultiplier
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -207,7 +207,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Target
|
id: Target
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -238,7 +238,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -276,7 +276,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -321,7 +321,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetMaxPathfindTime
|
id: GetMaxPathfindTime
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -352,7 +352,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -394,7 +394,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -430,7 +430,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
@ -462,7 +462,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PathfindToPersonAction.cs
|
path: TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
path: ../TinyLife/Actions/PathfindToPersonAction.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PutAwayAction.cs
|
path: TinyLife/Actions/PutAwayAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PutAwayAction
|
id: PutAwayAction
|
||||||
path: ../TinyLife/Actions/PutAwayAction.cs
|
path: ../TinyLife/Actions/PutAwayAction.cs
|
||||||
|
@ -137,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PutAwayAction.cs
|
path: TinyLife/Actions/PutAwayAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Items
|
id: Items
|
||||||
path: ../TinyLife/Actions/PutAwayAction.cs
|
path: ../TinyLife/Actions/PutAwayAction.cs
|
||||||
|
@ -166,7 +166,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PutAwayAction.cs
|
path: TinyLife/Actions/PutAwayAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/PutAwayAction.cs
|
path: ../TinyLife/Actions/PutAwayAction.cs
|
||||||
|
@ -198,7 +198,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PutAwayAction.cs
|
path: TinyLife/Actions/PutAwayAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/PutAwayAction.cs
|
path: ../TinyLife/Actions/PutAwayAction.cs
|
||||||
|
@ -227,7 +227,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/PutAwayAction.cs
|
path: TinyLife/Actions/PutAwayAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/PutAwayAction.cs
|
path: ../TinyLife/Actions/PutAwayAction.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SellAction
|
id: SellAction
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
@ -138,7 +138,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Items
|
id: Items
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
@ -167,7 +167,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
@ -199,7 +199,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
@ -228,7 +228,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
@ -260,7 +260,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SellAction.cs
|
path: TinyLife/Actions/SellAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSoldObject
|
id: GetSoldObject
|
||||||
path: ../TinyLife/Actions/SellAction.cs
|
path: ../TinyLife/Actions/SellAction.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SitAction
|
id: SitAction
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
@ -137,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
@ -175,7 +175,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
@ -207,7 +207,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
@ -249,7 +249,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
@ -281,7 +281,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SitAction.cs
|
path: TinyLife/Actions/SitAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/SitAction.cs
|
path: ../TinyLife/Actions/SitAction.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StartPartnerAction
|
id: StartPartnerAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -124,7 +124,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -159,7 +159,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -188,7 +188,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
|
|
@ -45,7 +45,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SocialAction
|
id: SocialAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -160,7 +160,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsMain
|
id: IsMain
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -201,7 +201,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Partner
|
id: Partner
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -232,7 +232,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PartnerAction
|
id: PartnerAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -263,7 +263,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MainAction
|
id: MainAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -294,7 +294,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConversationTime
|
id: ConversationTime
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -335,7 +335,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InProgressTime
|
id: InProgressTime
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -368,7 +368,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -403,7 +403,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -441,7 +441,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -473,7 +473,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InitializeConversation
|
id: InitializeConversation
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -501,7 +501,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateConversation
|
id: UpdateConversation
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -542,7 +542,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsConversationCompleted
|
id: IsConversationCompleted
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -573,7 +573,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetMaxWaitTime
|
id: GetMaxWaitTime
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -604,7 +604,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EnqueuePartnerAction
|
id: EnqueuePartnerAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -639,7 +639,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPartnerArguments
|
id: GetPartnerArguments
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -674,7 +674,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnBothCompleted
|
id: OnBothCompleted
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -706,7 +706,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -748,7 +748,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -780,7 +780,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -809,7 +809,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -842,7 +842,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -878,7 +878,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -914,7 +914,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanStartNow
|
id: CanStartNow
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -946,7 +946,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -978,7 +978,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryForceResult
|
id: TryForceResult
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -1020,7 +1020,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InvokeForBoth
|
id: InvokeForBoth
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -1055,7 +1055,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsHelper
|
id: IsHelper
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -1093,7 +1093,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHelper
|
id: GetHelper
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -1131,7 +1131,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRecipientAction
|
id: GetRecipientAction
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
@ -1169,7 +1169,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/SocialAction.cs
|
path: TinyLife/Actions/SocialAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateAskOffer
|
id: CreateAskOffer
|
||||||
path: ../TinyLife/Actions/SocialAction.cs
|
path: ../TinyLife/Actions/SocialAction.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StoreAction
|
id: StoreAction
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -137,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Items
|
id: Items
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -166,7 +166,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -198,7 +198,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -227,7 +227,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -269,7 +269,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
@ -301,7 +301,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/StoreAction.cs
|
path: TinyLife/Actions/StoreAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/StoreAction.cs
|
path: ../TinyLife/Actions/StoreAction.cs
|
||||||
|
|
|
@ -15,11 +15,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EvaluationResult
|
id: EvaluationResult
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
startLine: 526
|
startLine: 523
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
|
|
@ -46,7 +46,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkSettings
|
id: TalkSettings
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -92,7 +92,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FriendshipGain
|
id: FriendshipGain
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -121,7 +121,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoBadlyChance
|
id: GoBadlyChance
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -150,7 +150,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkMinutes
|
id: TalkMinutes
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -179,7 +179,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmoteCategory
|
id: EmoteCategory
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -208,7 +208,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SpeakStyle
|
id: SpeakStyle
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -237,7 +237,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PartnerEmoteCategory
|
id: PartnerEmoteCategory
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -266,7 +266,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PartnerSpeakStyle
|
id: PartnerSpeakStyle
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -295,7 +295,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GainedSkill
|
id: GainedSkill
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -324,7 +324,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GainSkillOnFailure
|
id: GainSkillOnFailure
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -353,7 +353,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RestoredNeed
|
id: RestoredNeed
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -382,7 +382,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredEmotion
|
id: RequiredEmotion
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -411,7 +411,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPersonality
|
id: RequiredPersonality
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -440,7 +440,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredSkill
|
id: RequiredSkill
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -469,7 +469,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredAges
|
id: RequiredAges
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -498,7 +498,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPartnerAges
|
id: RequiredPartnerAges
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -527,7 +527,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredJob
|
id: RequiredJob
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -556,7 +556,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPartnerEmployment
|
id: RequiredPartnerEmployment
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -585,7 +585,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecute
|
id: CanExecute
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -614,7 +614,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FailEmotion
|
id: FailEmotion
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -643,7 +643,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SuccessEmotion
|
id: SuccessEmotion
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -672,7 +672,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GainRomancePercentage
|
id: GainRomancePercentage
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -701,7 +701,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LoweredEmotion
|
id: LoweredEmotion
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -730,7 +730,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnSuccess
|
id: OnSuccess
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -759,7 +759,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnFailure
|
id: OnFailure
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -788,7 +788,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanDoRandomly
|
id: CanDoRandomly
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -817,7 +817,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -848,7 +848,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -889,7 +889,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EvaluateFully
|
id: EvaluateFully
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -921,11 +921,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EvaluateSimple
|
id: EvaluateSimple
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
startLine: 349
|
startLine: 346
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -965,11 +965,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EvaluateValues
|
id: EvaluateValues
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
startLine: 428
|
startLine: 425
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
@ -1012,11 +1012,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CheckCanExecute
|
id: CheckCanExecute
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
startLine: 512
|
startLine: 509
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Actions
|
namespace: TinyLife.Actions
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TalkAction
|
id: TalkAction
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -163,7 +163,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnEvaluate
|
id: OnEvaluate
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -192,7 +192,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnTalkSuccess
|
id: OnTalkSuccess
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -221,7 +221,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnTalkFailure
|
id: OnTalkFailure
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -250,7 +250,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Settings
|
id: Settings
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -281,7 +281,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -319,7 +319,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateConversation
|
id: UpdateConversation
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -361,7 +361,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -394,7 +394,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsConversationCompleted
|
id: IsConversationCompleted
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -426,7 +426,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Create
|
id: Create
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -470,7 +470,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFunny
|
id: CreateFunny
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -520,7 +520,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateMean
|
id: CreateMean
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
@ -564,7 +564,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TalkAction.cs
|
path: TinyLife/Actions/TalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateRomantic
|
id: CreateRomantic
|
||||||
path: ../TinyLife/Actions/TalkAction.cs
|
path: ../TinyLife/Actions/TalkAction.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TellPeopleToLeaveRoomAction
|
id: TellPeopleToLeaveRoomAction
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -126,7 +126,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ExcludedPeople
|
id: ExcludedPeople
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -165,7 +165,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -200,7 +200,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -229,7 +229,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -261,7 +261,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
@ -294,7 +294,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryToLeaveRoom
|
id: TryToLeaveRoom
|
||||||
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
path: ../TinyLife/Actions/TellPeopleToLeaveRoomAction.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryGoHereAction
|
id: TryGoHereAction
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -125,7 +125,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PositionsToTry
|
id: PositionsToTry
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -164,7 +164,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -199,7 +199,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Initialize
|
id: Initialize
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -228,7 +228,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -270,7 +270,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -306,7 +306,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
@ -338,7 +338,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/TryGoHereAction.cs
|
path: TinyLife/Actions/TryGoHereAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Actions/TryGoHereAction.cs
|
path: ../TinyLife/Actions/TryGoHereAction.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WalkAction
|
id: WalkAction
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
@ -132,7 +132,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DrainEnergy
|
id: DrainEnergy
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
@ -171,7 +171,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
@ -206,7 +206,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FindPath
|
id: FindPath
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
@ -245,7 +245,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSpeed
|
id: GetSpeed
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
@ -277,7 +277,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WalkAction.cs
|
path: TinyLife/Actions/WalkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Actions/WalkAction.cs
|
path: ../TinyLife/Actions/WalkAction.cs
|
||||||
|
|
|
@ -21,7 +21,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Channel
|
id: Channel
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -50,7 +50,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Comedy
|
id: Comedy
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -78,7 +78,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Cooking
|
id: Cooking
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -106,7 +106,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Romance
|
id: Romance
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -134,7 +134,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Drama
|
id: Drama
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -162,7 +162,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: News
|
id: News
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -190,7 +190,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Cartoons
|
id: Cartoons
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
|
|
@ -26,7 +26,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WatchTvAction
|
id: WatchTvAction
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -140,7 +140,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FullyInProgress
|
id: FullyInProgress
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -173,7 +173,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -210,7 +210,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -242,7 +242,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -271,7 +271,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -313,7 +313,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -345,7 +345,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanMultitask
|
id: CanMultitask
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -381,7 +381,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -414,7 +414,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetViewingArea
|
id: GetViewingArea
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -455,7 +455,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetSeating
|
id: GetSeating
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
@ -499,7 +499,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WatchTvAction.cs
|
path: TinyLife/Actions/WatchTvAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetViewers
|
id: GetViewers
|
||||||
path: ../TinyLife/Actions/WatchTvAction.cs
|
path: ../TinyLife/Actions/WatchTvAction.cs
|
||||||
|
|
|
@ -24,7 +24,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkAction
|
id: WorkAction
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -140,7 +140,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Job
|
id: Job
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -171,7 +171,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -206,7 +206,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanCancel
|
id: CanCancel
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -242,7 +242,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateFirstActions
|
id: CreateFirstActions
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -274,7 +274,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PreInitialize
|
id: PreInitialize
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -303,7 +303,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenInitialize
|
id: AndThenInitialize
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -332,7 +332,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenUpdate
|
id: AndThenUpdate
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -374,7 +374,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenIsCompleted
|
id: AndThenIsCompleted
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
@ -406,7 +406,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Actions/WorkAction.cs
|
path: TinyLife/Actions/WorkAction.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AndThenOnCompleted
|
id: AndThenOnCompleted
|
||||||
path: ../TinyLife/Actions/WorkAction.cs
|
path: ../TinyLife/Actions/WorkAction.cs
|
||||||
|
|
|
@ -15,11 +15,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CheatDelegate
|
id: CheatDelegate
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
startLine: 832
|
startLine: 842
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -15,11 +15,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DebugDelegate
|
id: DebugDelegate
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
startLine: 837
|
startLine: 847
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Debug
|
id: Debug
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
|
@ -57,7 +57,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Cheats
|
id: Cheats
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
|
@ -86,7 +86,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DebugLines
|
id: DebugLines
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
|
@ -115,11 +115,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Debug.cs
|
path: TinyLife/Debug.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryCheat
|
id: TryCheat
|
||||||
path: ../TinyLife/Debug.cs
|
path: ../TinyLife/Debug.cs
|
||||||
startLine: 633
|
startLine: 643
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -17,7 +17,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/IEmotionSource.cs
|
path: TinyLife/Emotions/IEmotionSource.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CombinedEmotionSource
|
id: CombinedEmotionSource
|
||||||
path: ../TinyLife/Emotions/IEmotionSource.cs
|
path: ../TinyLife/Emotions/IEmotionSource.cs
|
||||||
|
@ -58,7 +58,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/IEmotionSource.cs
|
path: TinyLife/Emotions/IEmotionSource.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SourceString
|
id: SourceString
|
||||||
path: ../TinyLife/Emotions/IEmotionSource.cs
|
path: ../TinyLife/Emotions/IEmotionSource.cs
|
||||||
|
@ -91,7 +91,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/IEmotionSource.cs
|
path: TinyLife/Emotions/IEmotionSource.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Emotions/IEmotionSource.cs
|
path: ../TinyLife/Emotions/IEmotionSource.cs
|
||||||
|
|
|
@ -23,11 +23,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Instance
|
id: Instance
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 453
|
startLine: 464
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -72,11 +72,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 460
|
startLine: 471
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -111,11 +111,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Amount
|
id: Amount
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 465
|
startLine: 476
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -150,11 +150,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TotalTime
|
id: TotalTime
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 470
|
startLine: 481
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -189,11 +189,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Time
|
id: Time
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 475
|
startLine: 486
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -230,11 +230,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SourceString
|
id: SourceString
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 481
|
startLine: 492
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -271,11 +271,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 486
|
startLine: 497
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -302,11 +302,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PassTime
|
id: PassTime
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 503
|
startLine: 514
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
@ -334,11 +334,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionModifier.cs
|
path: TinyLife/Emotions/EmotionModifier.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||||
startLine: 517
|
startLine: 528
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Emotions
|
namespace: TinyLife.Emotions
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TypeCategory
|
id: TypeCategory
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -47,7 +47,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Negative
|
id: Negative
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -75,7 +75,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Positive
|
id: Positive
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -103,7 +103,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Neutral
|
id: Neutral
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
|
|
@ -39,7 +39,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmotionType
|
id: EmotionType
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -84,7 +84,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Types
|
id: Types
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -113,7 +113,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Fine
|
id: Fine
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -140,7 +140,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Uncomfortable
|
id: Uncomfortable
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -167,7 +167,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Asleep
|
id: Asleep
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -194,7 +194,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Happy
|
id: Happy
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -221,7 +221,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Embarrassed
|
id: Embarrassed
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -248,7 +248,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sad
|
id: Sad
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -275,7 +275,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Bored
|
id: Bored
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -302,7 +302,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Frisky
|
id: Frisky
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -329,7 +329,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Creative
|
id: Creative
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -356,7 +356,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Focused
|
id: Focused
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -383,7 +383,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Stunned
|
id: Stunned
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -410,7 +410,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Angry
|
id: Angry
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -437,7 +437,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Energetic
|
id: Energetic
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -464,7 +464,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Uneasy
|
id: Uneasy
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -491,7 +491,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Relaxed
|
id: Relaxed
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -518,7 +518,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Confident
|
id: Confident
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -545,7 +545,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goofy
|
id: Goofy
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -572,7 +572,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -601,7 +601,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Icon
|
id: Icon
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -630,7 +630,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Color
|
id: Color
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -659,7 +659,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Category
|
id: Category
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -688,7 +688,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
@ -732,7 +732,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/EmotionType.cs
|
path: TinyLife/Emotions/EmotionType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Emotions/EmotionType.cs
|
path: ../TinyLife/Emotions/EmotionType.cs
|
||||||
|
|
|
@ -16,7 +16,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/IEmotionSource.cs
|
path: TinyLife/Emotions/IEmotionSource.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IEmotionSource
|
id: IEmotionSource
|
||||||
path: ../TinyLife/Emotions/IEmotionSource.cs
|
path: ../TinyLife/Emotions/IEmotionSource.cs
|
||||||
|
@ -45,7 +45,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Emotions/IEmotionSource.cs
|
path: TinyLife/Emotions/IEmotionSource.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SourceString
|
id: SourceString
|
||||||
path: ../TinyLife/Emotions/IEmotionSource.cs
|
path: ../TinyLife/Emotions/IEmotionSource.cs
|
||||||
|
|
|
@ -22,11 +22,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GameMode
|
id: GameMode
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1186
|
startLine: 1187
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -51,11 +51,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InitialLoad
|
id: InitialLoad
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1189
|
startLine: 1190
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -79,11 +79,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Splash
|
id: Splash
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1191
|
startLine: 1192
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -107,11 +107,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MainMenu
|
id: MainMenu
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1193
|
startLine: 1194
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -135,11 +135,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SelectHousehold
|
id: SelectHousehold
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1195
|
startLine: 1196
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -163,11 +163,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InGameHousehold
|
id: InGameHousehold
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1197
|
startLine: 1198
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -191,11 +191,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BuildOnly
|
id: BuildOnly
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1199
|
startLine: 1200
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -219,11 +219,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CharacterCreation
|
id: CharacterCreation
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 1201
|
startLine: 1202
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -52,11 +52,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GameImpl
|
id: GameImpl
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 52
|
startLine: 53
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -142,21 +142,21 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Version
|
id: Version
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 57
|
startLine: 58
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
summary: "\nThe game's version, gathered from the assembly\n"
|
summary: "\nThe game's version, gathered from the assembly\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly string Version
|
content: public static readonly NuGetVersion Version
|
||||||
return:
|
return:
|
||||||
type: System.String
|
type: NuGet.Versioning.NuGetVersion
|
||||||
content.vb: Public Shared ReadOnly Version As String
|
content.vb: Public Shared ReadOnly Version As NuGetVersion
|
||||||
- uid: TinyLife.GameImpl.Instance
|
- uid: TinyLife.GameImpl.Instance
|
||||||
commentId: P:TinyLife.GameImpl.Instance
|
commentId: P:TinyLife.GameImpl.Instance
|
||||||
id: Instance
|
id: Instance
|
||||||
|
@ -171,11 +171,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Instance
|
id: Instance
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 62
|
startLine: 63
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -202,11 +202,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Achievements
|
id: Achievements
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 70
|
startLine: 71
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -231,11 +231,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GraphicsMetrics
|
id: GraphicsMetrics
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 76
|
startLine: 77
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -262,11 +262,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Camera
|
id: Camera
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 80
|
startLine: 81
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -293,11 +293,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Listener
|
id: Listener
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 84
|
startLine: 85
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -324,11 +324,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentTool
|
id: CurrentTool
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 88
|
startLine: 89
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -355,15 +355,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentHousehold
|
id: CurrentHousehold
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 103
|
startLine: 104
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
summary: "\nThe household that is currently being played, or <pre><code>null</code></pre> if in the main menu, editing a lot or on the map select screen\n"
|
summary: "\nThe household that is currently being played, or <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null\">null</a> if in the main menu, editing a lot or on the map select screen\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public Household CurrentHousehold { get; }
|
content: public Household CurrentHousehold { get; }
|
||||||
|
@ -386,11 +386,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Money
|
id: Money
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 107
|
startLine: 108
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -417,15 +417,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentLot
|
id: CurrentLot
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 117
|
startLine: 118
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
summary: "\nThe lot that is currently being played on or edited, or <pre><code>null</code></pre> if in the main menu or on the map select screen\n"
|
summary: "\nThe lot that is currently being played on or edited, or <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null\">null</a> if in the main menu or on the map select screen\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public Lot CurrentLot { get; }
|
content: public Lot CurrentLot { get; }
|
||||||
|
@ -448,11 +448,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Speed
|
id: Speed
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 123
|
startLine: 124
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -479,11 +479,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FollowingPerson
|
id: FollowingPerson
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 136
|
startLine: 137
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -510,15 +510,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SaveName
|
id: SaveName
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 140
|
startLine: 141
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
summary: "\nThe name of the save file that is currently being played, or <pre><code>null</code></pre> if in the main menu\n"
|
summary: "\nThe name of the save file that is currently being played, or <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null\">null</a> if in the main menu\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public string SaveName { get; }
|
content: public string SaveName { get; }
|
||||||
|
@ -541,11 +541,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Mode
|
id: Mode
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 144
|
startLine: 145
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -572,11 +572,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CursorPosition
|
id: CursorPosition
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 149
|
startLine: 150
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -603,11 +603,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentCursor
|
id: CurrentCursor
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 154
|
startLine: 155
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -632,11 +632,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentMaps
|
id: CurrentMaps
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 158
|
startLine: 159
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -663,11 +663,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentMap
|
id: CurrentMap
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 162
|
startLine: 163
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -694,11 +694,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnLoadContentLater
|
id: OnLoadContentLater
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 167
|
startLine: 168
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -723,11 +723,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnFinishedLoading
|
id: OnFinishedLoading
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 171
|
startLine: 172
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -752,11 +752,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LoadContent
|
id: LoadContent
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 262
|
startLine: 263
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -780,11 +780,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DoUpdate
|
id: DoUpdate
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 318
|
startLine: 319
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -811,11 +811,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DoDraw
|
id: DoDraw
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 569
|
startLine: 570
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -842,11 +842,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Dispose
|
id: Dispose
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 606
|
startLine: 607
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -876,11 +876,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RotateCamera
|
id: RotateCamera
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 624
|
startLine: 625
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -911,11 +911,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCursorOnUi
|
id: IsCursorOnUi
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 640
|
startLine: 641
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -942,11 +942,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SwitchGameMode
|
id: SwitchGameMode
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 652
|
startLine: 653
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -974,11 +974,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SwitchMap
|
id: SwitchMap
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 752
|
startLine: 743
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1012,11 +1012,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanBeExtremelyFast
|
id: CanBeExtremelyFast
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 779
|
startLine: 770
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1043,11 +1043,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanSwitchGameModes
|
id: CanSwitchGameModes
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 790
|
startLine: 781
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1074,11 +1074,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FadeKeyboardLighting
|
id: FadeKeyboardLighting
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 805
|
startLine: 796
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1106,11 +1106,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TakeScreenshot
|
id: TakeScreenshot
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 831
|
startLine: 822
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1147,11 +1147,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MarkLotVisible
|
id: MarkLotVisible
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 859
|
startLine: 850
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1179,11 +1179,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MarkLotNonVisible
|
id: MarkLotNonVisible
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 875
|
startLine: 866
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1211,11 +1211,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsLotVisible
|
id: IsLotVisible
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 886
|
startLine: 877
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1246,11 +1246,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FollowPerson
|
id: FollowPerson
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 899
|
startLine: 890
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -1290,11 +1290,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/GameImpl.cs
|
path: TinyLife/GameImpl.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CompleteAchievement
|
id: CompleteAchievement
|
||||||
path: ../TinyLife/GameImpl.cs
|
path: ../TinyLife/GameImpl.cs
|
||||||
startLine: 928
|
startLine: 919
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -2410,17 +2410,35 @@ references:
|
||||||
- name: .
|
- name: .
|
||||||
- uid: TinyLife.Utilities
|
- uid: TinyLife.Utilities
|
||||||
name: Utilities
|
name: Utilities
|
||||||
- uid: System.String
|
- uid: NuGet.Versioning.NuGetVersion
|
||||||
commentId: T:System.String
|
commentId: T:NuGet.Versioning.NuGetVersion
|
||||||
parent: System
|
parent: NuGet.Versioning
|
||||||
|
isExternal: true
|
||||||
|
name: NuGetVersion
|
||||||
|
nameWithType: NuGetVersion
|
||||||
|
fullName: NuGet.Versioning.NuGetVersion
|
||||||
|
- uid: NuGet.Versioning
|
||||||
|
commentId: N:NuGet.Versioning
|
||||||
|
isExternal: true
|
||||||
|
name: NuGet.Versioning
|
||||||
|
nameWithType: NuGet.Versioning
|
||||||
|
fullName: NuGet.Versioning
|
||||||
|
spec.csharp:
|
||||||
|
- uid: NuGet
|
||||||
|
name: NuGet
|
||||||
|
isExternal: true
|
||||||
|
- name: .
|
||||||
|
- uid: NuGet.Versioning
|
||||||
|
name: Versioning
|
||||||
|
isExternal: true
|
||||||
|
spec.vb:
|
||||||
|
- uid: NuGet
|
||||||
|
name: NuGet
|
||||||
|
isExternal: true
|
||||||
|
- name: .
|
||||||
|
- uid: NuGet.Versioning
|
||||||
|
name: Versioning
|
||||||
isExternal: true
|
isExternal: true
|
||||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
||||||
name: string
|
|
||||||
nameWithType: string
|
|
||||||
fullName: string
|
|
||||||
nameWithType.vb: String
|
|
||||||
fullName.vb: String
|
|
||||||
name.vb: String
|
|
||||||
- uid: TinyLife.GameImpl.Instance*
|
- uid: TinyLife.GameImpl.Instance*
|
||||||
commentId: Overload:TinyLife.GameImpl.Instance
|
commentId: Overload:TinyLife.GameImpl.Instance
|
||||||
name: Instance
|
name: Instance
|
||||||
|
@ -2997,6 +3015,17 @@ references:
|
||||||
name: SaveName
|
name: SaveName
|
||||||
nameWithType: GameImpl.SaveName
|
nameWithType: GameImpl.SaveName
|
||||||
fullName: TinyLife.GameImpl.SaveName
|
fullName: TinyLife.GameImpl.SaveName
|
||||||
|
- uid: System.String
|
||||||
|
commentId: T:System.String
|
||||||
|
parent: System
|
||||||
|
isExternal: true
|
||||||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||||
|
name: string
|
||||||
|
nameWithType: string
|
||||||
|
fullName: string
|
||||||
|
nameWithType.vb: String
|
||||||
|
fullName.vb: String
|
||||||
|
name.vb: String
|
||||||
- uid: TinyLife.GameImpl.GameMode
|
- uid: TinyLife.GameImpl.GameMode
|
||||||
commentId: T:TinyLife.GameImpl.GameMode
|
commentId: T:TinyLife.GameImpl.GameMode
|
||||||
parent: TinyLife
|
parent: TinyLife
|
||||||
|
|
|
@ -20,11 +20,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GameSpeed
|
id: GameSpeed
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 593
|
startLine: 599
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -49,11 +49,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Paused
|
id: Paused
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 598
|
startLine: 604
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -77,11 +77,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Regular
|
id: Regular
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 602
|
startLine: 608
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -105,11 +105,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Fast
|
id: Fast
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 606
|
startLine: 612
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -133,11 +133,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VeryFast
|
id: VeryFast
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 610
|
startLine: 616
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -161,11 +161,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Options.cs
|
path: TinyLife/Options.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ExtremelyFast
|
id: ExtremelyFast
|
||||||
path: ../TinyLife/Options.cs
|
path: ../TinyLife/Options.cs
|
||||||
startLine: 615
|
startLine: 621
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -25,11 +25,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GenealogyType
|
id: GenealogyType
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 539
|
startLine: 513
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -57,11 +57,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Unrelated
|
id: Unrelated
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 544
|
startLine: 518
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -85,11 +85,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Parent
|
id: Parent
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 548
|
startLine: 522
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -113,11 +113,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Child
|
id: Child
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 552
|
startLine: 526
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -141,11 +141,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Sibling
|
id: Sibling
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 556
|
startLine: 530
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -169,11 +169,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Nibling
|
id: Nibling
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 560
|
startLine: 534
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -197,11 +197,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Pibling
|
id: Pibling
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 564
|
startLine: 538
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -225,11 +225,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Grandparent
|
id: Grandparent
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 568
|
startLine: 542
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -253,11 +253,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Grandchild
|
id: Grandchild
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 572
|
startLine: 546
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -281,11 +281,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Cousin
|
id: Cousin
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 576
|
startLine: 550
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -309,11 +309,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Relationship.cs
|
path: TinyLife/Relationship.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DistantlyRelated
|
id: DistantlyRelated
|
||||||
path: ../TinyLife/Relationship.cs
|
path: ../TinyLife/Relationship.cs
|
||||||
startLine: 580
|
startLine: 554
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Achievement
|
id: Achievement
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -72,7 +72,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -111,7 +111,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goals
|
id: Goals
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -156,7 +156,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Completed
|
id: Completed
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -201,7 +201,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -239,7 +239,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -280,7 +280,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateElement
|
id: CreateElement
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -311,7 +311,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -342,7 +342,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Complete
|
id: Complete
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
|
|
@ -26,7 +26,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AchievementType
|
id: AchievementType
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -71,7 +71,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Types
|
id: Types
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -100,7 +100,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SomeoneDiesOnYourLot
|
id: SomeoneDiesOnYourLot
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -127,7 +127,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DieOnPublicLot
|
id: DieOnPublicLot
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -154,7 +154,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -183,7 +183,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Icon
|
id: Icon
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -212,7 +212,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goals
|
id: Goals
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -241,7 +241,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DisplayName
|
id: DisplayName
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -272,7 +272,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -313,7 +313,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -354,7 +354,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Construct
|
id: Construct
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
@ -385,7 +385,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Achievement.cs
|
path: TinyLife/Goals/Achievement.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Goals/Achievement.cs
|
path: ../TinyLife/Goals/Achievement.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AmountGoal
|
id: AmountGoal
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
@ -76,7 +76,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
@ -111,7 +111,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
@ -143,7 +143,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
@ -172,7 +172,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayedProgress
|
id: GetDisplayedProgress
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AmountGoal.cs
|
path: TinyLife/Goals/AmountGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/AmountGoal.cs
|
path: ../TinyLife/Goals/AmountGoal.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AutoGoalInfo
|
id: AutoGoalInfo
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -72,7 +72,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Triggers
|
id: Triggers
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -101,7 +101,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Condition
|
id: Condition
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -130,7 +130,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -174,7 +174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Timed
|
id: Timed
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -224,7 +224,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Amount
|
id: Amount
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -274,7 +274,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Distinct
|
id: Distinct
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -327,7 +327,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Distinct
|
id: Distinct
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -380,7 +380,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Conditioned
|
id: Conditioned
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AutoTriggerGoal
|
id: AutoTriggerGoal
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -85,7 +85,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -120,7 +120,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -153,7 +153,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -189,7 +189,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanTrigger
|
id: CanTrigger
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AutoTriggerGoal
|
id: AutoTriggerGoal
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -75,7 +75,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -110,7 +110,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
@ -145,7 +145,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/AutoTriggerGoal.cs
|
path: TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanTrigger
|
id: CanTrigger
|
||||||
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
path: ../TinyLife/Goals/AutoTriggerGoal.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConditionedGoal
|
id: ConditionedGoal
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
@ -76,7 +76,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
@ -111,7 +111,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
@ -143,7 +143,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
@ -172,7 +172,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayedProgress
|
id: GetDisplayedProgress
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ConditionedGoal.cs
|
path: TinyLife/Goals/ConditionedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/ConditionedGoal.cs
|
path: ../TinyLife/Goals/ConditionedGoal.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DistinctGoal
|
id: DistinctGoal
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -81,7 +81,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -116,7 +116,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -150,7 +150,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -181,7 +181,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayedProgress
|
id: GetDisplayedProgress
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -215,7 +215,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -253,7 +253,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
@ -287,7 +287,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/DistinctGoal.cs
|
path: TinyLife/Goals/DistinctGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanTrigger
|
id: CanTrigger
|
||||||
path: ../TinyLife/Goals/DistinctGoal.cs
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
||||||
|
|
|
@ -17,7 +17,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goal
|
id: Goal
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -77,7 +77,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Info
|
id: Info
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -110,7 +110,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
|
|
@ -23,7 +23,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goal
|
id: Goal
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -82,7 +82,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -121,7 +121,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Set
|
id: Set
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -152,7 +152,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Info
|
id: Info
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -183,7 +183,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -221,7 +221,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -252,7 +252,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -280,7 +280,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayedProgress
|
id: GetDisplayedProgress
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
@ -311,7 +311,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Goal.cs
|
path: TinyLife/Goals/Goal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/Goal.cs
|
path: ../TinyLife/Goals/Goal.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoalInfo
|
id: GoalInfo
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -66,7 +66,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -95,7 +95,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
@ -133,7 +133,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalInfo.cs
|
path: TinyLife/Goals/GoalInfo.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Construct
|
id: Construct
|
||||||
path: ../TinyLife/Goals/GoalInfo.cs
|
path: ../TinyLife/Goals/GoalInfo.cs
|
||||||
|
|
|
@ -25,7 +25,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoalSet
|
id: GoalSet
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -82,7 +82,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Info
|
id: Info
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -113,7 +113,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -148,7 +148,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -179,7 +179,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -210,7 +210,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -238,7 +238,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetGoals
|
id: GetGoals
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -275,7 +275,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetGoal
|
id: GetGoal
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -316,7 +316,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetGoal
|
id: GetGoal
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -353,7 +353,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplay
|
id: GetDisplay
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -394,7 +394,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoalSetInfo
|
id: GoalSetInfo
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -64,7 +64,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Configurations
|
id: Configurations
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -93,7 +93,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
@ -128,7 +128,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalSet.cs
|
path: TinyLife/Goals/GoalSet.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Construct
|
id: Construct
|
||||||
path: ../TinyLife/Goals/GoalSet.cs
|
path: ../TinyLife/Goals/GoalSet.cs
|
||||||
|
|
|
@ -34,7 +34,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GoalTrigger
|
id: GoalTrigger
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
|
@ -73,15 +73,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PersonUpdate
|
id: PersonUpdate
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 19
|
startLine: 20
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s <xref href=\"TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> method is called.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s <xref href=\"TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> method is called.\nThis goal trigger supports the <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.TimedGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger PersonUpdate
|
content: public static readonly GoalTrigger PersonUpdate
|
||||||
|
@ -102,15 +102,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FurnitureCreated
|
id: FurnitureCreated
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 24
|
startLine: 26
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> item is created by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\nBy default, this trigger is used in <xref href=\"TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> item is created by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\nBy default, this trigger is used in <xref href=\"TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger FurnitureCreated
|
content: public static readonly GoalTrigger FurnitureCreated
|
||||||
|
@ -131,15 +131,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionCompleted
|
id: ActionCompleted
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 28
|
startLine: 31
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is completed succesfully (the result is <xref href=\"TinyLife.Actions.CompletionType.Completed\" data-throw-if-not-resolved=\"false\"></xref>) by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is completed succesfully (the result is <xref href=\"TinyLife.Actions.CompletionType.Completed\" data-throw-if-not-resolved=\"false\"></xref>) by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger ActionCompleted
|
content: public static readonly GoalTrigger ActionCompleted
|
||||||
|
@ -160,15 +160,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionEnded
|
id: ActionEnded
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 32
|
startLine: 36
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is completed in any way (the <xref href=\"TinyLife.Actions.CompletionType\" data-throw-if-not-resolved=\"false\"></xref> doesn't matter) by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is completed in any way (the <xref href=\"TinyLife.Actions.CompletionType\" data-throw-if-not-resolved=\"false\"></xref> doesn't matter) by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger ActionEnded
|
content: public static readonly GoalTrigger ActionEnded
|
||||||
|
@ -189,15 +189,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionUpdate
|
id: ActionUpdate
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 36
|
startLine: 41
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is updated.\n"
|
summary: "\nA goal trigger for when an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> is updated.\nThis goal trigger supports the <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.TimedGoal\" data-throw-if-not-resolved=\"false\"></xref> goal type.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger ActionUpdate
|
content: public static readonly GoalTrigger ActionUpdate
|
||||||
|
@ -218,15 +218,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EarnMoney
|
id: EarnMoney
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 41
|
startLine: 47
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> earns money through an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref>.\nBy default, this trigger is used in <xref href=\"TinyLife.Objects.Person.EarnMoney(System.Single%2cSystem.Object)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> earns money through an <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref>.\nBy default, this trigger is used in <xref href=\"TinyLife.Objects.Person.EarnMoney(System.Single%2cSystem.Object)\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.Job\" data-throw-if-not-resolved=\"false\"></xref> object types and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger EarnMoney
|
content: public static readonly GoalTrigger EarnMoney
|
||||||
|
@ -247,15 +247,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmotionGained
|
id: EmotionGained
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 45
|
startLine: 52
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> is added to a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> using <xref href=\"TinyLife.Objects.Person.AddEmotion(TinyLife.Emotions.EmotionModifier%2cSystem.Int32%2cSystem.TimeSpan%2cTinyLife.Emotions.IEmotionSource%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> is added to a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> using <xref href=\"TinyLife.Objects.Person.AddEmotion(TinyLife.Emotions.EmotionModifier%2cSystem.Int32%2cSystem.TimeSpan%2cTinyLife.Emotions.IEmotionSource%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Emotions.EmotionModifier.Instance\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger EmotionGained
|
content: public static readonly GoalTrigger EmotionGained
|
||||||
|
@ -276,15 +276,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EmotionLost
|
id: EmotionLost
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 49
|
startLine: 57
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> is removed from a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Objects.Person.RemoveEmotion(TinyLife.Emotions.EmotionModifier)\" data-throw-if-not-resolved=\"false\"></xref> or when it runs out.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> is removed from a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Objects.Person.RemoveEmotion(TinyLife.Emotions.EmotionModifier)\" data-throw-if-not-resolved=\"false\"></xref> or when it runs out.\nThis goal trigger supports the <xref href=\"TinyLife.Emotions.EmotionModifier.Instance\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger EmotionLost
|
content: public static readonly GoalTrigger EmotionLost
|
||||||
|
@ -305,15 +305,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FoodEaten
|
id: FoodEaten
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 53
|
startLine: 62
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> item is eaten by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action%2cTinyLife.Objects.FoodTypedItem)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> item is eaten by a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action%2cTinyLife.Objects.FoodTypedItem)\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Objects.FoodTypedItem\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Objects.FoodTypedItem\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger FoodEaten
|
content: public static readonly GoalTrigger FoodEaten
|
||||||
|
@ -334,15 +334,15 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ProjectCompleted
|
id: ProjectCompleted
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 57
|
startLine: 67
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref> is marked as completed in <xref href=\"TinyLife.Goals.Project.OnCompleted\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
summary: "\nA goal trigger for when a <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref> is marked as completed in <xref href=\"TinyLife.Goals.Project.OnCompleted\" data-throw-if-not-resolved=\"false\"></xref>.\nThis goal trigger supports the <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref> object type and the <xref href=\"TinyLife.Goals.ConditionedGoal\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Goals.AmountGoal\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Goals.DistinctGoal%601\" data-throw-if-not-resolved=\"false\"></xref> of type <xref href=\"TinyLife.Goals.Project\" data-throw-if-not-resolved=\"false\"></xref> goal types.\n"
|
||||||
example: []
|
example: []
|
||||||
syntax:
|
syntax:
|
||||||
content: public static readonly GoalTrigger ProjectCompleted
|
content: public static readonly GoalTrigger ProjectCompleted
|
||||||
|
@ -363,11 +363,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 62
|
startLine: 72
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -392,11 +392,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ValidObjects
|
id: ValidObjects
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 66
|
startLine: 76
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -421,11 +421,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ValidValues
|
id: ValidValues
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 70
|
startLine: 80
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -450,11 +450,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 78
|
startLine: 88
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -491,11 +491,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsObjectCompatible
|
id: IsObjectCompatible
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 101
|
startLine: 111
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -526,11 +526,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsValueCompatible
|
id: IsValueCompatible
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 115
|
startLine: 125
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -561,11 +561,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Equals
|
id: Equals
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 124
|
startLine: 134
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -595,11 +595,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Equals
|
id: Equals
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 129
|
startLine: 139
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -631,11 +631,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/GoalTrigger.cs
|
path: TinyLife/Goals/GoalTrigger.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetHashCode
|
id: GetHashCode
|
||||||
path: ../TinyLife/Goals/GoalTrigger.cs
|
path: ../TinyLife/Goals/GoalTrigger.cs
|
||||||
startLine: 134
|
startLine: 144
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -1056,6 +1056,16 @@ references:
|
||||||
isExternal: true
|
isExternal: true
|
||||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: TinyLife.Goals.TimedGoal
|
||||||
|
commentId: T:TinyLife.Goals.TimedGoal
|
||||||
|
name: TimedGoal
|
||||||
|
nameWithType: TimedGoal
|
||||||
|
fullName: TinyLife.Goals.TimedGoal
|
||||||
|
- uid: TinyLife.Goals.ConditionedGoal
|
||||||
|
commentId: T:TinyLife.Goals.ConditionedGoal
|
||||||
|
name: ConditionedGoal
|
||||||
|
nameWithType: ConditionedGoal
|
||||||
|
fullName: TinyLife.Goals.ConditionedGoal
|
||||||
- uid: TinyLife.Goals.GoalTrigger
|
- uid: TinyLife.Goals.GoalTrigger
|
||||||
commentId: T:TinyLife.Goals.GoalTrigger
|
commentId: T:TinyLife.Goals.GoalTrigger
|
||||||
parent: TinyLife.Goals
|
parent: TinyLife.Goals
|
||||||
|
@ -1122,6 +1132,33 @@ references:
|
||||||
isExternal: true
|
isExternal: true
|
||||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: TinyLife.Goals.AmountGoal
|
||||||
|
commentId: T:TinyLife.Goals.AmountGoal
|
||||||
|
name: AmountGoal
|
||||||
|
nameWithType: AmountGoal
|
||||||
|
fullName: TinyLife.Goals.AmountGoal
|
||||||
|
- uid: TinyLife.Goals.DistinctGoal`1
|
||||||
|
commentId: T:TinyLife.Goals.DistinctGoal`1
|
||||||
|
name: DistinctGoal<T>
|
||||||
|
nameWithType: DistinctGoal<T>
|
||||||
|
fullName: TinyLife.Goals.DistinctGoal<T>
|
||||||
|
nameWithType.vb: DistinctGoal(Of T)
|
||||||
|
fullName.vb: TinyLife.Goals.DistinctGoal(Of T)
|
||||||
|
name.vb: DistinctGoal(Of T)
|
||||||
|
spec.csharp:
|
||||||
|
- uid: TinyLife.Goals.DistinctGoal`1
|
||||||
|
name: DistinctGoal
|
||||||
|
- name: <
|
||||||
|
- name: T
|
||||||
|
- name: '>'
|
||||||
|
spec.vb:
|
||||||
|
- uid: TinyLife.Goals.DistinctGoal`1
|
||||||
|
name: DistinctGoal
|
||||||
|
- name: (
|
||||||
|
- name: Of
|
||||||
|
- name: " "
|
||||||
|
- name: T
|
||||||
|
- name: )
|
||||||
- uid: TinyLife.Actions.Action
|
- uid: TinyLife.Actions.Action
|
||||||
commentId: T:TinyLife.Actions.Action
|
commentId: T:TinyLife.Actions.Action
|
||||||
parent: TinyLife.Actions
|
parent: TinyLife.Actions
|
||||||
|
@ -1202,6 +1239,12 @@ references:
|
||||||
isExternal: true
|
isExternal: true
|
||||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: TinyLife.Goals.Job
|
||||||
|
commentId: T:TinyLife.Goals.Job
|
||||||
|
parent: TinyLife.Goals
|
||||||
|
name: Job
|
||||||
|
nameWithType: Job
|
||||||
|
fullName: TinyLife.Goals.Job
|
||||||
- uid: TinyLife.Emotions.EmotionModifier
|
- uid: TinyLife.Emotions.EmotionModifier
|
||||||
commentId: T:TinyLife.Emotions.EmotionModifier
|
commentId: T:TinyLife.Emotions.EmotionModifier
|
||||||
parent: TinyLife.Emotions
|
parent: TinyLife.Emotions
|
||||||
|
@ -1276,6 +1319,24 @@ references:
|
||||||
isExternal: true
|
isExternal: true
|
||||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: TinyLife.Emotions.EmotionModifier.Instance
|
||||||
|
commentId: T:TinyLife.Emotions.EmotionModifier.Instance
|
||||||
|
parent: TinyLife.Emotions
|
||||||
|
name: EmotionModifier.Instance
|
||||||
|
nameWithType: EmotionModifier.Instance
|
||||||
|
fullName: TinyLife.Emotions.EmotionModifier.Instance
|
||||||
|
spec.csharp:
|
||||||
|
- uid: TinyLife.Emotions.EmotionModifier
|
||||||
|
name: EmotionModifier
|
||||||
|
- name: .
|
||||||
|
- uid: TinyLife.Emotions.EmotionModifier.Instance
|
||||||
|
name: Instance
|
||||||
|
spec.vb:
|
||||||
|
- uid: TinyLife.Emotions.EmotionModifier
|
||||||
|
name: EmotionModifier
|
||||||
|
- name: .
|
||||||
|
- uid: TinyLife.Emotions.EmotionModifier.Instance
|
||||||
|
name: Instance
|
||||||
- uid: TinyLife.Emotions
|
- uid: TinyLife.Emotions
|
||||||
commentId: N:TinyLife.Emotions
|
commentId: N:TinyLife.Emotions
|
||||||
name: TinyLife.Emotions
|
name: TinyLife.Emotions
|
||||||
|
@ -1345,6 +1406,12 @@ references:
|
||||||
- uid: TinyLife.Objects.FoodTypedItem
|
- uid: TinyLife.Objects.FoodTypedItem
|
||||||
name: FoodTypedItem
|
name: FoodTypedItem
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: TinyLife.Objects.FoodTypedItem
|
||||||
|
commentId: T:TinyLife.Objects.FoodTypedItem
|
||||||
|
parent: TinyLife.Objects
|
||||||
|
name: FoodTypedItem
|
||||||
|
nameWithType: FoodTypedItem
|
||||||
|
fullName: TinyLife.Objects.FoodTypedItem
|
||||||
- uid: TinyLife.Skills
|
- uid: TinyLife.Skills
|
||||||
commentId: N:TinyLife.Skills
|
commentId: N:TinyLife.Skills
|
||||||
name: TinyLife.Skills
|
name: TinyLife.Skills
|
||||||
|
|
|
@ -18,7 +18,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/IGoalTriggerable.cs
|
path: TinyLife/Goals/IGoalTriggerable.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IGoalTriggerable
|
id: IGoalTriggerable
|
||||||
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
||||||
|
@ -47,7 +47,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/IGoalTriggerable.cs
|
path: TinyLife/Goals/IGoalTriggerable.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TryTrigger
|
id: TryTrigger
|
||||||
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
||||||
|
@ -91,7 +91,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/IGoalTriggerable.cs
|
path: TinyLife/Goals/IGoalTriggerable.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
||||||
|
@ -138,7 +138,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/IGoalTriggerable.cs
|
path: TinyLife/Goals/IGoalTriggerable.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
path: ../TinyLife/Goals/IGoalTriggerable.cs
|
||||||
|
|
|
@ -15,11 +15,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JobPerformanceDelegate
|
id: JobPerformanceDelegate
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 331
|
startLine: 329
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
|
|
@ -37,7 +37,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Job
|
id: Job
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -93,7 +93,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnGetWorkingPerformance
|
id: OnGetWorkingPerformance
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -122,7 +122,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -161,7 +161,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -192,7 +192,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Performance
|
id: Performance
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -233,7 +233,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPromotionPerformance
|
id: RequiredPromotionPerformance
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -264,7 +264,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Level
|
id: Level
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -305,7 +305,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DailyTasks
|
id: DailyTasks
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -346,7 +346,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AmountOfRaises
|
id: AmountOfRaises
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -387,7 +387,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentHourlyPay
|
id: CurrentHourlyPay
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -418,7 +418,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: VacationDaysAvailable
|
id: VacationDaysAvailable
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -457,7 +457,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DaysOnVacation
|
id: DaysOnVacation
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -498,7 +498,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
|
@ -539,11 +539,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 110
|
startLine: 108
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -571,11 +571,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateWorking
|
id: UpdateWorking
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 156
|
startLine: 154
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -612,11 +612,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddPerformance
|
id: AddPerformance
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 189
|
startLine: 187
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -647,11 +647,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AddLevel
|
id: AddLevel
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 215
|
startLine: 213
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -685,11 +685,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRaise
|
id: GetRaise
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 257
|
startLine: 255
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -716,11 +716,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasRequiredPromotionSkills
|
id: HasRequiredPromotionSkills
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 276
|
startLine: 274
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -747,11 +747,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetCoworkers
|
id: GetCoworkers
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 288
|
startLine: 286
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -778,11 +778,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetCoworkersAtWork
|
id: GetCoworkersAtWork
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 296
|
startLine: 294
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -809,11 +809,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 304
|
startLine: 302
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -843,11 +843,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Job.cs
|
path: TinyLife/Goals/Job.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StartVacation
|
id: StartVacation
|
||||||
path: ../TinyLife/Goals/Job.cs
|
path: ../TinyLife/Goals/Job.cs
|
||||||
startLine: 323
|
startLine: 321
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
|
|
@ -53,7 +53,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: JobType
|
id: JobType
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -108,7 +108,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Types
|
id: Types
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -137,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PrimarySchoolStudent
|
id: PrimarySchoolStudent
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -164,7 +164,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Businessperson
|
id: Businessperson
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -191,7 +191,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Firefighter
|
id: Firefighter
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -218,7 +218,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Doctor
|
id: Doctor
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -245,7 +245,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Programmer
|
id: Programmer
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -272,7 +272,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RetailWorker
|
id: RetailWorker
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -299,7 +299,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Teacher
|
id: Teacher
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -326,7 +326,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Scientist
|
id: Scientist
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -353,7 +353,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -382,7 +382,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Icon
|
id: Icon
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -411,7 +411,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HourlyPay
|
id: HourlyPay
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -440,7 +440,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkHours
|
id: WorkHours
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -469,7 +469,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OffWorkDays
|
id: OffWorkDays
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -498,7 +498,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredPromotionSkills
|
id: RequiredPromotionSkills
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -529,7 +529,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MaxLevel
|
id: MaxLevel
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -560,7 +560,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HasSpecialLocalization
|
id: HasSpecialLocalization
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -591,7 +591,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredAges
|
id: RequiredAges
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -622,7 +622,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanQuitOrBeFired
|
id: CanQuitOrBeFired
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -653,7 +653,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanGetRaise
|
id: CanGetRaise
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -684,7 +684,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DailyTasks
|
id: DailyTasks
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -715,7 +715,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DailyTaskImportance
|
id: DailyTaskImportance
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -746,7 +746,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChoicePrompts
|
id: ChoicePrompts
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -777,7 +777,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SourceString
|
id: SourceString
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -810,7 +810,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -857,7 +857,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Construct
|
id: Construct
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -898,7 +898,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsTimeToWork
|
id: IsTimeToWork
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -933,7 +933,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ToScheduleString
|
id: ToScheduleString
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -967,7 +967,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayName
|
id: GetDisplayName
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1005,7 +1005,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetRequiredPromotionSkills
|
id: GetRequiredPromotionSkills
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1040,7 +1040,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnWorkStartsInAnHour
|
id: OnWorkStartsInAnHour
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1072,7 +1072,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnWorkHoursOver
|
id: OnWorkHoursOver
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1104,7 +1104,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnWorkFinished
|
id: OnWorkFinished
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1139,7 +1139,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnWorkStarted
|
id: OnWorkStarted
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1174,7 +1174,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnLevelChanged
|
id: OnLevelChanged
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1212,7 +1212,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnRaiseReceived
|
id: OnRaiseReceived
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1244,7 +1244,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateWorking
|
id: UpdateWorking
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
@ -1288,7 +1288,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/JobType.cs
|
path: TinyLife/Goals/JobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Goals/JobType.cs
|
path: ../TinyLife/Goals/JobType.cs
|
||||||
|
|
|
@ -25,11 +25,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Instance
|
id: Instance
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 229
|
startLine: 241
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -74,11 +74,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goal
|
id: Goal
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 236
|
startLine: 248
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -113,11 +113,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CurrentGoals
|
id: CurrentGoals
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 240
|
startLine: 252
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -154,11 +154,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StageIndex
|
id: StageIndex
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 247
|
startLine: 259
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -195,11 +195,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 252
|
startLine: 264
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -226,11 +226,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Stage
|
id: Stage
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 257
|
startLine: 269
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -257,11 +257,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Completed
|
id: Completed
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 261
|
startLine: 273
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -288,11 +288,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 269
|
startLine: 281
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -329,11 +329,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 281
|
startLine: 293
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -357,11 +357,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Advance
|
id: Advance
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 291
|
startLine: 303
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -385,11 +385,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 316
|
startLine: 328
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
|
|
@ -25,6 +25,7 @@ items:
|
||||||
- TinyLife.Goals.LifeGoal.RewardPersonality
|
- TinyLife.Goals.LifeGoal.RewardPersonality
|
||||||
- TinyLife.Goals.LifeGoal.SmartKid
|
- TinyLife.Goals.LifeGoal.SmartKid
|
||||||
- TinyLife.Goals.LifeGoal.Stages
|
- TinyLife.Goals.LifeGoal.Stages
|
||||||
|
- TinyLife.Goals.LifeGoal.Writer
|
||||||
langs:
|
langs:
|
||||||
- csharp
|
- csharp
|
||||||
- vb
|
- vb
|
||||||
|
@ -35,7 +36,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LifeGoal
|
id: LifeGoal
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -80,7 +81,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goals
|
id: Goals
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -109,7 +110,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Chef
|
id: Chef
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -136,7 +137,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SmartKid
|
id: SmartKid
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -163,7 +164,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HouseholdHero
|
id: HouseholdHero
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -190,7 +191,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ComputerAddict
|
id: ComputerAddict
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -217,7 +218,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FriendOfEveryone
|
id: FriendOfEveryone
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -244,7 +245,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Millionaire
|
id: Millionaire
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -271,7 +272,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PerfectPainter
|
id: PerfectPainter
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -298,7 +299,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreativeChild
|
id: CreativeChild
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -325,7 +326,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CapableCarpenter
|
id: CapableCarpenter
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -352,7 +353,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GymRat
|
id: GymRat
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
@ -365,6 +366,33 @@ items:
|
||||||
return:
|
return:
|
||||||
type: TinyLife.Goals.LifeGoal
|
type: TinyLife.Goals.LifeGoal
|
||||||
content.vb: Public Shared ReadOnly GymRat As LifeGoal
|
content.vb: Public Shared ReadOnly GymRat As LifeGoal
|
||||||
|
- uid: TinyLife.Goals.LifeGoal.Writer
|
||||||
|
commentId: F:TinyLife.Goals.LifeGoal.Writer
|
||||||
|
id: Writer
|
||||||
|
parent: TinyLife.Goals.LifeGoal
|
||||||
|
langs:
|
||||||
|
- csharp
|
||||||
|
- vb
|
||||||
|
name: Writer
|
||||||
|
nameWithType: LifeGoal.Writer
|
||||||
|
fullName: TinyLife.Goals.LifeGoal.Writer
|
||||||
|
type: Field
|
||||||
|
source:
|
||||||
|
remote:
|
||||||
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
|
branch: main
|
||||||
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
|
id: Writer
|
||||||
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
|
startLine: 163
|
||||||
|
assemblies:
|
||||||
|
- Tiny Life
|
||||||
|
namespace: TinyLife.Goals
|
||||||
|
syntax:
|
||||||
|
content: public static readonly LifeGoal Writer
|
||||||
|
return:
|
||||||
|
type: TinyLife.Goals.LifeGoal
|
||||||
|
content.vb: Public Shared ReadOnly Writer As LifeGoal
|
||||||
- uid: TinyLife.Goals.LifeGoal.OnAdvanced
|
- uid: TinyLife.Goals.LifeGoal.OnAdvanced
|
||||||
commentId: E:TinyLife.Goals.LifeGoal.OnAdvanced
|
commentId: E:TinyLife.Goals.LifeGoal.OnAdvanced
|
||||||
id: OnAdvanced
|
id: OnAdvanced
|
||||||
|
@ -379,11 +407,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnAdvanced
|
id: OnAdvanced
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 169
|
startLine: 181
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -408,11 +436,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 173
|
startLine: 185
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -437,11 +465,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 178
|
startLine: 190
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -466,11 +494,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Stages
|
id: Stages
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 182
|
startLine: 194
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -495,11 +523,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RewardPersonality
|
id: RewardPersonality
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 187
|
startLine: 199
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -524,11 +552,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AllowedAges
|
id: AllowedAges
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 192
|
startLine: 204
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -555,11 +583,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 200
|
startLine: 212
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -596,11 +624,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IsCompleted
|
id: IsCompleted
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 211
|
startLine: 223
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -631,11 +659,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/LifeGoal.cs
|
path: TinyLife/Goals/LifeGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Goals/LifeGoal.cs
|
path: ../TinyLife/Goals/LifeGoal.cs
|
||||||
startLine: 220
|
startLine: 232
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
|
|
@ -19,7 +19,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ManualProgressGoal.cs
|
path: TinyLife/Goals/ManualProgressGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ManualProgressGoal
|
id: ManualProgressGoal
|
||||||
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
||||||
|
@ -71,7 +71,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ManualProgressGoal.cs
|
path: TinyLife/Goals/ManualProgressGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
||||||
|
@ -109,7 +109,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ManualProgressGoal.cs
|
path: TinyLife/Goals/ManualProgressGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
||||||
|
@ -141,7 +141,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ManualProgressGoal.cs
|
path: TinyLife/Goals/ManualProgressGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
||||||
|
@ -170,7 +170,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/ManualProgressGoal.cs
|
path: TinyLife/Goals/ManualProgressGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeProgress
|
id: MakeProgress
|
||||||
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
path: ../TinyLife/Goals/ManualProgressGoal.cs
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Memory
|
id: Memory
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -78,7 +78,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -117,7 +117,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TimeOccured
|
id: TimeOccured
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -158,7 +158,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Info
|
id: Info
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -199,7 +199,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TimeSinceOccured
|
id: TimeSinceOccured
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -230,7 +230,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -271,7 +271,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
@ -306,7 +306,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Memory.cs
|
path: TinyLife/Goals/Memory.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Update
|
id: Update
|
||||||
path: ../TinyLife/Goals/Memory.cs
|
path: ../TinyLife/Goals/Memory.cs
|
||||||
|
|
|
@ -6,6 +6,7 @@ items:
|
||||||
parent: TinyLife.Goals
|
parent: TinyLife.Goals
|
||||||
children:
|
children:
|
||||||
- TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)
|
- TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)
|
||||||
|
- TinyLife.Goals.MemoryType.ActionDone
|
||||||
- TinyLife.Goals.MemoryType.AskedForFood
|
- TinyLife.Goals.MemoryType.AskedForFood
|
||||||
- TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)
|
- TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)
|
||||||
- TinyLife.Goals.MemoryType.ConstructedType
|
- TinyLife.Goals.MemoryType.ConstructedType
|
||||||
|
@ -39,7 +40,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MemoryType
|
id: MemoryType
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -86,7 +87,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Types
|
id: Types
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -115,7 +116,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PublishFailure
|
id: PublishFailure
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -142,7 +143,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SocialAction
|
id: SocialAction
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -169,7 +170,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: PromotionOrRaise
|
id: PromotionOrRaise
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -196,7 +197,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FamilySocial
|
id: FamilySocial
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -223,7 +224,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UsedSkillCategory
|
id: UsedSkillCategory
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -250,7 +251,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WasOutside
|
id: WasOutside
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -277,7 +278,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UsedFurniture
|
id: UsedFurniture
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -304,7 +305,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WorkedAtJob
|
id: WorkedAtJob
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -331,7 +332,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: WasRomanticWithSomeoneElse
|
id: WasRomanticWithSomeoneElse
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -358,7 +359,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HadFirstKiss
|
id: HadFirstKiss
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -385,7 +386,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HadChild
|
id: HadChild
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -412,7 +413,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: AskedForFood
|
id: AskedForFood
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -439,7 +440,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Slept
|
id: Slept
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
@ -452,6 +453,33 @@ items:
|
||||||
return:
|
return:
|
||||||
type: TinyLife.Goals.MemoryType
|
type: TinyLife.Goals.MemoryType
|
||||||
content.vb: Public Shared ReadOnly Slept As MemoryType
|
content.vb: Public Shared ReadOnly Slept As MemoryType
|
||||||
|
- uid: TinyLife.Goals.MemoryType.ActionDone
|
||||||
|
commentId: F:TinyLife.Goals.MemoryType.ActionDone
|
||||||
|
id: ActionDone
|
||||||
|
parent: TinyLife.Goals.MemoryType
|
||||||
|
langs:
|
||||||
|
- csharp
|
||||||
|
- vb
|
||||||
|
name: ActionDone
|
||||||
|
nameWithType: MemoryType.ActionDone
|
||||||
|
fullName: TinyLife.Goals.MemoryType.ActionDone
|
||||||
|
type: Field
|
||||||
|
source:
|
||||||
|
remote:
|
||||||
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
|
branch: main
|
||||||
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
|
id: ActionDone
|
||||||
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
|
startLine: 45
|
||||||
|
assemblies:
|
||||||
|
- Tiny Life
|
||||||
|
namespace: TinyLife.Goals
|
||||||
|
syntax:
|
||||||
|
content: public static readonly Dictionary<ActionType, MemoryType> ActionDone
|
||||||
|
return:
|
||||||
|
type: System.Collections.Generic.Dictionary{TinyLife.Actions.ActionType,TinyLife.Goals.MemoryType}
|
||||||
|
content.vb: Public Shared ReadOnly ActionDone As Dictionary(Of ActionType, MemoryType)
|
||||||
- uid: TinyLife.Goals.MemoryType.HadAbortion
|
- uid: TinyLife.Goals.MemoryType.HadAbortion
|
||||||
commentId: F:TinyLife.Goals.MemoryType.HadAbortion
|
commentId: F:TinyLife.Goals.MemoryType.HadAbortion
|
||||||
id: HadAbortion
|
id: HadAbortion
|
||||||
|
@ -466,11 +494,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: HadAbortion
|
id: HadAbortion
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 46
|
startLine: 48
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -493,11 +521,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MayBePregnant
|
id: MayBePregnant
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 47
|
startLine: 49
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -520,11 +548,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: FoundOutPregnancy
|
id: FoundOutPregnancy
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 48
|
startLine: 50
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -547,11 +575,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ToldAboutPregnancy
|
id: ToldAboutPregnancy
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 49
|
startLine: 51
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -574,11 +602,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 56
|
startLine: 58
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -603,11 +631,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConstructedType
|
id: ConstructedType
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 60
|
startLine: 62
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -632,11 +660,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SourceString
|
id: SourceString
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 63
|
startLine: 65
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -665,11 +693,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 70
|
startLine: 72
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -703,11 +731,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Construct
|
id: Construct
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 82
|
startLine: 84
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -750,11 +778,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/MemoryType.cs
|
path: TinyLife/Goals/MemoryType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Register
|
id: Register
|
||||||
path: ../TinyLife/Goals/MemoryType.cs
|
path: ../TinyLife/Goals/MemoryType.cs
|
||||||
startLine: 97
|
startLine: 99
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife.Goals
|
namespace: TinyLife.Goals
|
||||||
|
@ -1447,6 +1475,45 @@ references:
|
||||||
- uid: TinyLife.Goals.MemoryType
|
- uid: TinyLife.Goals.MemoryType
|
||||||
name: MemoryType
|
name: MemoryType
|
||||||
- name: )
|
- name: )
|
||||||
|
- uid: System.Collections.Generic.Dictionary{TinyLife.Actions.ActionType,TinyLife.Goals.MemoryType}
|
||||||
|
commentId: T:System.Collections.Generic.Dictionary{TinyLife.Actions.ActionType,TinyLife.Goals.MemoryType}
|
||||||
|
parent: System.Collections.Generic
|
||||||
|
definition: System.Collections.Generic.Dictionary`2
|
||||||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
||||||
|
name: Dictionary<ActionType, MemoryType>
|
||||||
|
nameWithType: Dictionary<ActionType, MemoryType>
|
||||||
|
fullName: System.Collections.Generic.Dictionary<TinyLife.Actions.ActionType, TinyLife.Goals.MemoryType>
|
||||||
|
nameWithType.vb: Dictionary(Of ActionType, MemoryType)
|
||||||
|
fullName.vb: System.Collections.Generic.Dictionary(Of TinyLife.Actions.ActionType, TinyLife.Goals.MemoryType)
|
||||||
|
name.vb: Dictionary(Of ActionType, MemoryType)
|
||||||
|
spec.csharp:
|
||||||
|
- uid: System.Collections.Generic.Dictionary`2
|
||||||
|
name: Dictionary
|
||||||
|
isExternal: true
|
||||||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
||||||
|
- name: <
|
||||||
|
- uid: TinyLife.Actions.ActionType
|
||||||
|
name: ActionType
|
||||||
|
- name: ','
|
||||||
|
- name: " "
|
||||||
|
- uid: TinyLife.Goals.MemoryType
|
||||||
|
name: MemoryType
|
||||||
|
- name: '>'
|
||||||
|
spec.vb:
|
||||||
|
- uid: System.Collections.Generic.Dictionary`2
|
||||||
|
name: Dictionary
|
||||||
|
isExternal: true
|
||||||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
||||||
|
- name: (
|
||||||
|
- name: Of
|
||||||
|
- name: " "
|
||||||
|
- uid: TinyLife.Actions.ActionType
|
||||||
|
name: ActionType
|
||||||
|
- name: ','
|
||||||
|
- name: " "
|
||||||
|
- uid: TinyLife.Goals.MemoryType
|
||||||
|
name: MemoryType
|
||||||
|
- name: )
|
||||||
- uid: System.String
|
- uid: System.String
|
||||||
commentId: T:System.String
|
commentId: T:System.String
|
||||||
parent: System
|
parent: System
|
||||||
|
|
|
@ -27,7 +27,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ActionSettings
|
id: ActionSettings
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -63,7 +63,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -92,7 +92,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Context
|
id: Context
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -121,7 +121,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -150,7 +150,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConstructedType
|
id: ConstructedType
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -179,7 +179,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ConstructedTypeScrap
|
id: ConstructedTypeScrap
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -208,7 +208,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanExecute
|
id: CanExecute
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -237,7 +237,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredSkill
|
id: RequiredSkill
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -266,7 +266,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: RequiredAges
|
id: RequiredAges
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -295,7 +295,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ProjectDisplayName
|
id: ProjectDisplayName
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -324,7 +324,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CanContinue
|
id: CanContinue
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -353,7 +353,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: IncludeProject
|
id: IncludeProject
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -382,7 +382,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
|
|
@ -35,7 +35,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Project
|
id: Project
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -91,7 +91,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Type
|
id: Type
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -130,7 +130,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Name
|
id: Name
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -169,7 +169,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Completed
|
id: Completed
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -200,7 +200,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Quality
|
id: Quality
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -243,7 +243,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Progress
|
id: Progress
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -274,7 +274,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DailyPay
|
id: DailyPay
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -319,7 +319,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: DailyPayReductionFactor
|
id: DailyPayReductionFactor
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -364,7 +364,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Person
|
id: Person
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -395,7 +395,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Archived
|
id: Archived
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -436,7 +436,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -477,7 +477,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Validate
|
id: Validate
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -512,7 +512,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: MakeProgress
|
id: MakeProgress
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -559,7 +559,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Remove
|
id: Remove
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -587,7 +587,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnNewDay
|
id: OnNewDay
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -615,7 +615,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnCompleted
|
id: OnCompleted
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -643,7 +643,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetDailyPay
|
id: SetDailyPay
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -684,7 +684,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: CreateActions
|
id: CreateActions
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -719,7 +719,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetPossibleArguments
|
id: GetPossibleArguments
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -766,7 +766,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenNamePrompt
|
id: OpenNamePrompt
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
@ -810,7 +810,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/Project.cs
|
path: TinyLife/Goals/Project.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OpenScrapPrompt
|
id: OpenScrapPrompt
|
||||||
path: ../TinyLife/Goals/Project.cs
|
path: ../TinyLife/Goals/Project.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: StudentJobType
|
id: StudentJobType
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
@ -102,7 +102,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Schedule
|
id: Schedule
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
@ -131,7 +131,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
@ -178,7 +178,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnWorkFinished
|
id: OnWorkFinished
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
@ -214,7 +214,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: OnLevelChanged
|
id: OnLevelChanged
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
@ -253,7 +253,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/StudentJobType.cs
|
path: TinyLife/Goals/StudentJobType.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: UpdateWorking
|
id: UpdateWorking
|
||||||
path: ../TinyLife/Goals/StudentJobType.cs
|
path: ../TinyLife/Goals/StudentJobType.cs
|
||||||
|
|
|
@ -20,7 +20,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: TimedGoal
|
id: TimedGoal
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
@ -76,7 +76,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: .ctor
|
id: .ctor
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
@ -111,7 +111,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetProgress
|
id: GetProgress
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
@ -143,7 +143,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reset
|
id: Reset
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
@ -172,7 +172,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetDisplayedProgress
|
id: GetDisplayedProgress
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
@ -204,7 +204,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Goals/TimedGoal.cs
|
path: TinyLife/Goals/TimedGoal.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Trigger
|
id: Trigger
|
||||||
path: ../TinyLife/Goals/TimedGoal.cs
|
path: ../TinyLife/Goals/TimedGoal.cs
|
||||||
|
|
|
@ -31,11 +31,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LnCategory
|
id: LnCategory
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 204
|
startLine: 202
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -60,11 +60,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Ui
|
id: Ui
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 207
|
startLine: 205
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -88,11 +88,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Actions
|
id: Actions
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 209
|
startLine: 207
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -116,11 +116,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: BuildMode
|
id: BuildMode
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 211
|
startLine: 209
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -144,11 +144,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Clothes
|
id: Clothes
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 213
|
startLine: 211
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -172,11 +172,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Food
|
id: Food
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 215
|
startLine: 213
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -200,11 +200,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Personalities
|
id: Personalities
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 217
|
startLine: 215
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -228,11 +228,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Skills
|
id: Skills
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 219
|
startLine: 217
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -256,11 +256,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Jobs
|
id: Jobs
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 221
|
startLine: 219
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -284,11 +284,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Emotions
|
id: Emotions
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 223
|
startLine: 221
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -312,11 +312,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Hints
|
id: Hints
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 225
|
startLine: 223
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -340,11 +340,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: InGameHints
|
id: InGameHints
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 227
|
startLine: 225
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -368,11 +368,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Goals
|
id: Goals
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 229
|
startLine: 227
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -396,11 +396,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Names
|
id: Names
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 231
|
startLine: 229
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -424,11 +424,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: ChoicePrompts
|
id: ChoicePrompts
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 233
|
startLine: 231
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -452,11 +452,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Achievements
|
id: Achievements
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 235
|
startLine: 233
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
@ -480,11 +480,11 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Overrides
|
id: Overrides
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
startLine: 237
|
startLine: 235
|
||||||
assemblies:
|
assemblies:
|
||||||
- Tiny Life
|
- Tiny Life
|
||||||
namespace: TinyLife
|
namespace: TinyLife
|
||||||
|
|
|
@ -22,7 +22,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Localization
|
id: Localization
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -59,7 +59,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: LanguageNames
|
id: LanguageNames
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -88,7 +88,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Names
|
id: Names
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -117,7 +117,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: SetLanguage
|
id: SetLanguage
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -152,7 +152,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Reload
|
id: Reload
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -180,7 +180,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Get
|
id: Get
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -221,7 +221,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Get
|
id: Get
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
@ -265,7 +265,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Localization.cs
|
path: TinyLife/Localization.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: GetKeys
|
id: GetKeys
|
||||||
path: ../TinyLife/Localization.cs
|
path: ../TinyLife/Localization.cs
|
||||||
|
|
|
@ -17,7 +17,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Mods/EventPhase.cs
|
path: TinyLife/Mods/EventPhase.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: EventPhase
|
id: EventPhase
|
||||||
path: ../TinyLife/Mods/EventPhase.cs
|
path: ../TinyLife/Mods/EventPhase.cs
|
||||||
|
@ -46,7 +46,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Mods/EventPhase.cs
|
path: TinyLife/Mods/EventPhase.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Pre
|
id: Pre
|
||||||
path: ../TinyLife/Mods/EventPhase.cs
|
path: ../TinyLife/Mods/EventPhase.cs
|
||||||
|
@ -74,7 +74,7 @@ items:
|
||||||
source:
|
source:
|
||||||
remote:
|
remote:
|
||||||
path: TinyLife/Mods/EventPhase.cs
|
path: TinyLife/Mods/EventPhase.cs
|
||||||
branch: 0.37.5-dev
|
branch: main
|
||||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||||
id: Post
|
id: Post
|
||||||
path: ../TinyLife/Mods/EventPhase.cs
|
path: ../TinyLife/Mods/EventPhase.cs
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue