mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 11:23:29 +01:00
0.33.0
This commit is contained in:
parent
85a5a303d8
commit
af5d13c72d
142 changed files with 4875 additions and 2705 deletions
48
Changelog.md
48
Changelog.md
|
@ -1,3 +1,51 @@
|
|||
# 0.33.0
|
||||
*May 26, 2023*
|
||||
|
||||
![](media/changelog/0.33.0.png)
|
||||
|
||||
> The Quality of Life Update
|
||||
|
||||
Read about this update in last week's post [on itch](https://ellpeck.itch.io/tiny-life/devlog/532785/community-showcase-and-future-plans-early-access-launch-postmortem) or [on Steam](https://store.steampowered.com/news/app/1651490/view/3717203461059432062).
|
||||
|
||||
Additions
|
||||
- Added the ability to invite visiting Tinies into your house (they shouldn't enter otherwise)
|
||||
- Added the ability to take vacation days and family leave
|
||||
- Added ColorCo Modular Curtains
|
||||
- Added Turkish translation by Archura Localization Group
|
||||
|
||||
Improvements
|
||||
- Made adults take leftovers from the fridge rather than cooking new food when asked for food
|
||||
- Added some more modern and hair colors
|
||||
- Moved some computer actions into subcategories
|
||||
- Disable the AI for a little bit when a manual action is started
|
||||
- Handle mod initialization issues more gracefully
|
||||
- Made babies not lose social effectiveness when using a social multiple times in a row
|
||||
- Made some clothes intentions unavailable for babies
|
||||
- Bold some text in the in-game hints to make it easier to skim
|
||||
- Allow Tinies to do inappropriate things if they're close to the lot's household members
|
||||
- Made people more likely to put down items before doing things
|
||||
- Improved the City Dweller reward personality by causing it to give discounts on public lots
|
||||
- Allow potties to get dirty
|
||||
|
||||
Fixes
|
||||
- Fixed babies being able to have sophisticated emotions
|
||||
- Fixed mods being able to add objects to incorrect map sections
|
||||
- Fixed households not automatically getting a job if there is a primary school student
|
||||
- Fixed Play action displaying as "too sad" for every object if too sad
|
||||
- Fixed Tinies deleted from the character creator not being removed from relationship panels
|
||||
- Fixed still being able to order food and drinks at the café with no money
|
||||
- Fixed being able to fool around while holding something
|
||||
- Fixed a rare exception when baking food
|
||||
|
||||
API
|
||||
- Removed IPricedObject interface
|
||||
- Made more Register methods return the registered objects
|
||||
- Allow mods to specify an issue tracker URL
|
||||
- Added an event for when the play mode tool stats panel updates
|
||||
- Added support for having multiple jobs at the same time
|
||||
- Added SaveHandler.OnSaveLoadError event
|
||||
- Added OnGetPrice event for food items
|
||||
|
||||
# 0.32.4
|
||||
*May 11, 2023*
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
"TinyLife.Actions.Action.InProgressTime": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.IsCompleted": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.Map": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.Action.yml",
|
||||
|
@ -78,6 +79,7 @@
|
|||
"TinyLife.Actions.ActionInfo.GetInvolvedActionSpot(TinyLife.Objects.Furniture)": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.GetInvolvedLocations": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.GetInvolvedObject``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean,System.Func{``0,System.Boolean})": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.GetInvolvedObjectIds": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.Lot": "TinyLife.Actions.ActionInfo.yml",
|
||||
"TinyLife.Actions.ActionInfo.Map": "TinyLife.Actions.ActionInfo.yml",
|
||||
|
@ -237,6 +239,7 @@
|
|||
"TinyLife.Actions.ActionType.ImplyMotherIsCamel": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.InspectBaby": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.Insult": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.InviteIn": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.InviteToHousehold": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.IsActionType(System.Type)": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.IsDislikedOrMean(TinyLife.Actions.ActionInfo,System.Boolean)": "TinyLife.Actions.ActionType.yml",
|
||||
|
@ -347,8 +350,10 @@
|
|||
"TinyLife.Actions.ActionType.TakeFromFridge": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakeOutOfCrib": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakeOutTrash": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakeParentalLeave": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakePregnancyTest": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakeShower": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TakeVacationDay": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.Talk": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TalkAboutBestSpots": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.TalkAboutBestToy": "TinyLife.Actions.ActionType.yml",
|
||||
|
@ -863,6 +868,7 @@
|
|||
"TinyLife.Actions.WorkAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.WorkAction.yml",
|
||||
"TinyLife.Actions.WorkAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.WorkAction.yml",
|
||||
"TinyLife.Actions.WorkAction.CreateFirstActions": "TinyLife.Actions.WorkAction.yml",
|
||||
"TinyLife.Actions.WorkAction.Job": "TinyLife.Actions.WorkAction.yml",
|
||||
"TinyLife.Actions.WorkAction.PreInitialize": "TinyLife.Actions.WorkAction.yml",
|
||||
"TinyLife.Debug": "TinyLife.Debug.yml",
|
||||
"TinyLife.Debug.CheatDelegate": "TinyLife.Debug.CheatDelegate.yml",
|
||||
|
@ -1000,7 +1006,9 @@
|
|||
"TinyLife.Emotions.EmotionModifier.MeanConversationPartner": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.Name": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.NegativeGauge": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.OnVacation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.OrderCanceled": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.ParentalLeave": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.PassedOut": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.PeedSelf": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.PerfectCreation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
|
@ -1070,6 +1078,7 @@
|
|||
"TinyLife.Emotions.EmotionModifier.UnsuccessfulRummaging": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.UpsettingConversation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.UsefulProgrammingResearch": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.VacationDaysAgain": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WonTournament": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WoodworkingSplinter": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WritersBlock": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
|
@ -1286,6 +1295,7 @@
|
|||
"TinyLife.Goals.Job.AmountOfRaises": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.CurrentHourlyPay": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.DailyTasks": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.DaysOnVacation": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.GetCoworkers": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.GetCoworkersAtWork": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.GetRaise": "TinyLife.Goals.Job.yml",
|
||||
|
@ -1296,9 +1306,11 @@
|
|||
"TinyLife.Goals.Job.Performance": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.Person": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.RequiredPromotionPerformance": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.Type": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.Update(System.TimeSpan)": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.VacationDaysAvailable": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.Job.Validate(TinyLife.Objects.Person)": "TinyLife.Goals.Job.yml",
|
||||
"TinyLife.Goals.JobType": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Single,System.ValueTuple{System.Int32,System.Int32},System.DayOfWeek[])": "TinyLife.Goals.JobType.yml",
|
||||
|
@ -1335,7 +1347,7 @@
|
|||
"TinyLife.Goals.JobType.Scientist": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.SourceString": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.Teacher": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.Types": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)": "TinyLife.Goals.JobType.yml",
|
||||
"TinyLife.Goals.JobType.WorkHours": "TinyLife.Goals.JobType.yml",
|
||||
|
@ -1390,6 +1402,7 @@
|
|||
"TinyLife.Goals.MemoryType.FamilySocial": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.FoundOutPregnancy": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.HadAbortion": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.HadChild": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.HadFirstKiss": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.MayBePregnant": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.Name": "TinyLife.Goals.MemoryType.yml",
|
||||
|
@ -1486,6 +1499,7 @@
|
|||
"TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)": "TinyLife.Mods.Mod.yml",
|
||||
"TinyLife.Mods.Mod.Icon": "TinyLife.Mods.Mod.yml",
|
||||
"TinyLife.Mods.Mod.Initialize(ExtremelySimpleLogger.Logger,MLEM.Data.Content.RawContentManager,MLEM.Data.RuntimeTexturePacker,TinyLife.Mods.ModInfo)": "TinyLife.Mods.Mod.yml",
|
||||
"TinyLife.Mods.Mod.IssueTrackerUrl": "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.RequiresHarmony": "TinyLife.Mods.Mod.yml",
|
||||
|
@ -1502,6 +1516,7 @@
|
|||
"TinyLife.Mods.ModInfo.SaveOptions``1(``0)": "TinyLife.Mods.ModInfo.yml",
|
||||
"TinyLife.Mods.ModInfo.ToString": "TinyLife.Mods.ModInfo.yml",
|
||||
"TinyLife.Mods.ModLoader": "TinyLife.Mods.ModLoader.yml",
|
||||
"TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame[])": "TinyLife.Mods.ModLoader.yml",
|
||||
"TinyLife.Mods.ModLoader.GetModsFolder": "TinyLife.Mods.ModLoader.yml",
|
||||
"TinyLife.Mods.ModLoader.TryGetModInfo(System.String,TinyLife.Mods.ModInfo@)": "TinyLife.Mods.ModLoader.yml",
|
||||
"TinyLife.Music": "TinyLife.Music.yml",
|
||||
|
@ -1855,6 +1870,7 @@
|
|||
"TinyLife.Objects.FurnitureType.ModernComputer": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernCrib": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernFridge": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernModularCurtains": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernSingleBed": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernSink": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ModernStove": "TinyLife.Objects.FurnitureType.yml",
|
||||
|
@ -2251,6 +2267,7 @@
|
|||
"TinyLife.Objects.Person.ActionQueue": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.ActionUpdateDelegate": "TinyLife.Objects.Person.ActionUpdateDelegate.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.AddMemory``1(TinyLife.Goals.MemoryType,TinyLife.Actions.ActionInfo,System.Boolean,System.Nullable{System.TimeSpan})": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.Age": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.AgeGroups": "TinyLife.Objects.Person.yml",
|
||||
|
@ -2354,6 +2371,7 @@
|
|||
"TinyLife.Objects.Person.IsPregnant": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.IsRegularVisitor": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.Job": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.Jobs": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.LastBedSleptIn": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.LastName": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.LastVisitedLot": "TinyLife.Objects.Person.yml",
|
||||
|
@ -2408,6 +2426,7 @@
|
|||
"TinyLife.Objects.Person.Relationships": "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.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.ResetToStatic(System.Boolean)": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.RestoreNeed(TinyLife.NeedType,System.Single,TinyLife.Actions.ActionInfo,System.Single)": "TinyLife.Objects.Person.yml",
|
||||
|
@ -2444,6 +2463,7 @@
|
|||
"TinyLife.Objects.Person.VoiceStyle": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.VoiceStyles": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.WalkSpeedDelegate": "TinyLife.Objects.Person.WalkSpeedDelegate.yml",
|
||||
"TinyLife.Objects.Person.WasInvitedIn": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.Person.WornLayers": "TinyLife.Objects.Person.yml",
|
||||
"TinyLife.Objects.PersonAi": "TinyLife.Objects.PersonAi.yml",
|
||||
"TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.Person,TinyLife.Actions.ActionType,System.Boolean)": "TinyLife.Objects.PersonAi.yml",
|
||||
|
@ -2737,6 +2757,7 @@
|
|||
"TinyLife.SaveHandler.GetSavesDir": "TinyLife.SaveHandler.yml",
|
||||
"TinyLife.SaveHandler.OnGameLoaded": "TinyLife.SaveHandler.yml",
|
||||
"TinyLife.SaveHandler.OnGameSaved": "TinyLife.SaveHandler.yml",
|
||||
"TinyLife.SaveHandler.OnSaveLoadError": "TinyLife.SaveHandler.yml",
|
||||
"TinyLife.Set": "TinyLife.Set.yml",
|
||||
"TinyLife.Set.ChildClothes": "TinyLife.Set.yml",
|
||||
"TinyLife.Set.Woodworking": "TinyLife.Set.yml",
|
||||
|
@ -2746,7 +2767,7 @@
|
|||
"TinyLife.Skills.FoodType.#ctor(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Skills.FoodType.IngredientSource,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.AdditionalObject": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.AllIntolerances": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single,System.Boolean)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CanCreateFunc": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CanEatFunc": "TinyLife.Skills.FoodType.yml",
|
||||
|
@ -2773,10 +2794,11 @@
|
|||
"TinyLife.Skills.FoodType.FoodIntolerance.NotPescetarian": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotVegan": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotVegetarian": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.GetActions(System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Boolean,System.Single,TinyLife.Skills.SkillType)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetActions(TinyLife.Objects.Person,System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Single,TinyLife.Skills.SkillType,System.Boolean)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetAllContainers(System.Int32)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetIntolerancesDescription(System.Boolean)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetPrice(System.Int32)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetPrice(TinyLife.Objects.Person,System.Int32,System.Single,System.Single@,System.Nullable{System.Single}@)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.GetPriceDelegate": "TinyLife.Skills.FoodType.GetPriceDelegate.yml",
|
||||
"TinyLife.Skills.FoodType.GetTexture(System.Int32)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.#ctor(System.String,TinyLife.Skills.FoodType.ContainerType)": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
|
@ -2796,6 +2818,7 @@
|
|||
"TinyLife.Skills.FoodType.Name": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.OnEaten": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.OnFoodEaten": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.OnGetPrice": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.Price": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.RequiredSkill": "TinyLife.Skills.FoodType.yml",
|
||||
|
@ -2952,6 +2975,7 @@
|
|||
"TinyLife.Tools.PlayModeTool.#ctor": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.CanUndoRedo": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.Closed": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.OnUpdateStatsView": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.Opened": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.Reload": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.SelectedPerson": "TinyLife.Tools.PlayModeTool.yml",
|
||||
|
@ -3202,7 +3226,7 @@
|
|||
"TinyLife.Utilities.Extensions.GetDefaultPose(TinyLife.Objects.AgeGroup)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDefaultTab(TinyLife.Objects.ObjectCategory)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDepth(TinyLife.Objects.ClothesLayer)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetPersonality(TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Objects.Person)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetPregnancyHours(TinyLife.Objects.LifeSpan)": "TinyLife.Utilities.Extensions.yml",
|
||||
|
@ -3213,6 +3237,7 @@
|
|||
"TinyLife.Utilities.Extensions.Icon(MLEM.Input.MouseButton)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsActiveRoot(MLEM.Ui.Elements.Element)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsHorizontal(MLEM.Misc.Direction2)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsLockedFor(TinyLife.World.LockType,TinyLife.Objects.Person,TinyLife.World.Lot)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsPartOfPerson(TinyLife.Objects.ClothesLayer)": "TinyLife.Utilities.Extensions.yml",
|
||||
|
@ -3316,8 +3341,6 @@
|
|||
"TinyLife.World.Household.UnopenedMail": "TinyLife.World.Household.yml",
|
||||
"TinyLife.World.Household.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.World.Household.yml",
|
||||
"TinyLife.World.Household.Validate(TinyLife.World.Map)": "TinyLife.World.Household.yml",
|
||||
"TinyLife.World.IPricedObject": "TinyLife.World.IPricedObject.yml",
|
||||
"TinyLife.World.IPricedObject.GetPrice": "TinyLife.World.IPricedObject.yml",
|
||||
"TinyLife.World.LockType": "TinyLife.World.LockType.yml",
|
||||
"TinyLife.World.LockType.Employees": "TinyLife.World.LockType.yml",
|
||||
"TinyLife.World.LockType.Household": "TinyLife.World.LockType.yml",
|
||||
|
|
|
@ -43,6 +43,7 @@ items:
|
|||
- TinyLife.Actions.Action.InProgressTime
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.IsCompleted
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.Map
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
|
@ -2524,6 +2525,44 @@ items:
|
|||
description: Whether the two actions can be multi-tasked
|
||||
content.vb: Public Shared Function CanMultitask(a1 As Action, a2 As Action) As Boolean
|
||||
overload: TinyLife.Actions.Action.CanMultitask*
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
id: IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/Action.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsInappropriate
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 896
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nChecks whether the given action <code data-dev-comment-type=\"paramref\" class=\"paramref\">type</code> is inappropriate for execution using the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">info</code>.\nThe return value is based on <xref href=\"TinyLife.Actions.ActionType.TypeSettings.IsInappropriateElsewhere\" data-throw-if-not-resolved=\"false\"></xref> and the <xref href=\"TinyLife.Actions.ActionInfo.Lot\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static bool IsInappropriate(ActionType type, ActionInfo info)
|
||||
parameters:
|
||||
- id: type
|
||||
type: TinyLife.Actions.ActionType
|
||||
description: The action type to execute.
|
||||
- id: info
|
||||
type: TinyLife.Actions.ActionInfo
|
||||
description: The action info.
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: Whether the action is inappropriate here.
|
||||
content.vb: Public Shared Function IsInappropriate(type As ActionType, info As ActionInfo) As Boolean
|
||||
overload: TinyLife.Actions.Action.IsInappropriate*
|
||||
references:
|
||||
- uid: TinyLife.Objects.Person
|
||||
commentId: T:TinyLife.Objects.Person
|
||||
|
@ -6457,3 +6496,13 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.ActionInfo.Lot
|
||||
commentId: P:TinyLife.Actions.ActionInfo.Lot
|
||||
name: Lot
|
||||
nameWithType: ActionInfo.Lot
|
||||
fullName: TinyLife.Actions.ActionInfo.Lot
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate*
|
||||
commentId: Overload:TinyLife.Actions.Action.IsInappropriate
|
||||
name: IsInappropriate
|
||||
nameWithType: Action.IsInappropriate
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate
|
||||
|
|
|
@ -20,6 +20,7 @@ items:
|
|||
- TinyLife.Actions.ActionInfo.GetInvolvedActionSpot(TinyLife.Objects.Furniture)
|
||||
- TinyLife.Actions.ActionInfo.GetInvolvedLocations
|
||||
- TinyLife.Actions.ActionInfo.GetInvolvedObject``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean,System.Func{``0,System.Boolean})
|
||||
- TinyLife.Actions.ActionInfo.GetInvolvedObjectIds
|
||||
- TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)
|
||||
- TinyLife.Actions.ActionInfo.Lot
|
||||
- TinyLife.Actions.ActionInfo.Map
|
||||
|
@ -587,6 +588,37 @@ items:
|
|||
description: The corresponding action info, or null if there is none
|
||||
content.vb: Public Function ToFreeActionSpot(context As ObjectCategory = Nothing) As ActionInfo
|
||||
overload: TinyLife.Actions.ActionInfo.ToFreeActionSpot*
|
||||
- uid: TinyLife.Actions.ActionInfo.GetInvolvedObjectIds
|
||||
commentId: M:TinyLife.Actions.ActionInfo.GetInvolvedObjectIds
|
||||
id: GetInvolvedObjectIds
|
||||
parent: TinyLife.Actions.ActionInfo
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetInvolvedObjectIds()
|
||||
nameWithType: ActionInfo.GetInvolvedObjectIds()
|
||||
fullName: TinyLife.Actions.ActionInfo.GetInvolvedObjectIds()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/ActionInfo.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetInvolvedObjectIds
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 224
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nReturns a collection of all of the object <xref href=\"TinyLife.Objects.MapObject.Id\" data-throw-if-not-resolved=\"false\"></xref> values involved in this action info. Possible return values include the action object (<xref href=\"TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>), as well as auxiliary objects (<xref href=\"TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject%2cTinyLife.Objects.ActionSpot)\" data-throw-if-not-resolved=\"false\"></xref>).\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public IEnumerable<Guid> GetInvolvedObjectIds()
|
||||
return:
|
||||
type: System.Collections.Generic.IEnumerable{System.Guid}
|
||||
description: The involved object ids.
|
||||
content.vb: Public Function GetInvolvedObjectIds() As IEnumerable(Of Guid)
|
||||
overload: TinyLife.Actions.ActionInfo.GetInvolvedObjectIds*
|
||||
- uid: TinyLife.Actions.ActionInfo.Validate(TinyLife.Objects.Person)
|
||||
commentId: M:TinyLife.Actions.ActionInfo.Validate(TinyLife.Objects.Person)
|
||||
id: Validate(TinyLife.Objects.Person)
|
||||
|
@ -605,7 +637,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 225
|
||||
startLine: 240
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -639,7 +671,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromLocation
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 294
|
||||
startLine: 304
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -677,7 +709,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromLocation
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 305
|
||||
startLine: 315
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -715,7 +747,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromObjectGeneric
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 316
|
||||
startLine: 326
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -756,7 +788,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromObjectGeneric
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 326
|
||||
startLine: 336
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -794,7 +826,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromSelf
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 335
|
||||
startLine: 345
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -829,7 +861,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromActionInfo
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 346
|
||||
startLine: 356
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2307,6 +2339,52 @@ references:
|
|||
name: ActionInfo
|
||||
nameWithType: ActionInfo
|
||||
fullName: TinyLife.Actions.ActionInfo
|
||||
- uid: TinyLife.Objects.MapObject.Id
|
||||
commentId: P:TinyLife.Objects.MapObject.Id
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: Id
|
||||
nameWithType: MapObject.Id
|
||||
fullName: TinyLife.Objects.MapObject.Id
|
||||
- uid: TinyLife.Actions.ActionInfo.GetInvolvedObjectIds*
|
||||
commentId: Overload:TinyLife.Actions.ActionInfo.GetInvolvedObjectIds
|
||||
name: GetInvolvedObjectIds
|
||||
nameWithType: ActionInfo.GetInvolvedObjectIds
|
||||
fullName: TinyLife.Actions.ActionInfo.GetInvolvedObjectIds
|
||||
- uid: System.Collections.Generic.IEnumerable{System.Guid}
|
||||
commentId: T:System.Collections.Generic.IEnumerable{System.Guid}
|
||||
parent: System.Collections.Generic
|
||||
definition: System.Collections.Generic.IEnumerable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||||
name: IEnumerable<Guid>
|
||||
nameWithType: IEnumerable<Guid>
|
||||
fullName: System.Collections.Generic.IEnumerable<System.Guid>
|
||||
nameWithType.vb: IEnumerable(Of Guid)
|
||||
fullName.vb: System.Collections.Generic.IEnumerable(Of System.Guid)
|
||||
name.vb: IEnumerable(Of Guid)
|
||||
spec.csharp:
|
||||
- uid: System.Collections.Generic.IEnumerable`1
|
||||
name: IEnumerable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||||
- name: <
|
||||
- uid: System.Guid
|
||||
name: Guid
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.guid
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Collections.Generic.IEnumerable`1
|
||||
name: IEnumerable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: System.Guid
|
||||
name: Guid
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.guid
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.ActionInfo.Validate*
|
||||
commentId: Overload:TinyLife.Actions.ActionInfo.Validate
|
||||
name: Validate
|
||||
|
@ -2347,12 +2425,6 @@ references:
|
|||
name: Vector2
|
||||
isExternal: true
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.Id
|
||||
commentId: P:TinyLife.Objects.MapObject.Id
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: Id
|
||||
nameWithType: MapObject.Id
|
||||
fullName: TinyLife.Objects.MapObject.Id
|
||||
- uid: TinyLife.Objects.MapObject.Position
|
||||
commentId: P:TinyLife.Objects.MapObject.Position
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AiSettings
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 325
|
||||
startLine: 324
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -62,7 +62,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SolvedNeeds
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 333
|
||||
startLine: 332
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -91,7 +91,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassivePriority
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 341
|
||||
startLine: 340
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -120,7 +120,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanDoRandomly
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 348
|
||||
startLine: 347
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -149,7 +149,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanDoAtAnyPoint
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 355
|
||||
startLine: 354
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -178,7 +178,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NeedsFreeActionSpot
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 361
|
||||
startLine: 360
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -207,7 +207,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IgnoreAiDisabled
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 365
|
||||
startLine: 364
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -236,7 +236,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 370
|
||||
startLine: 369
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecuteDelegate
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 154
|
||||
startLine: 152
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -46,7 +46,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TypeSettings
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 159
|
||||
startLine: 157
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -84,7 +84,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 164
|
||||
startLine: 162
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -113,7 +113,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NameWithoutCategory
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 169
|
||||
startLine: 167
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -144,7 +144,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Categories
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 174
|
||||
startLine: 172
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -175,7 +175,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Texture
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 179
|
||||
startLine: 177
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -204,7 +204,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Context
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 184
|
||||
startLine: 182
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -233,7 +233,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecute
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 190
|
||||
startLine: 188
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -262,7 +262,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ConstructedType
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 195
|
||||
startLine: 193
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -291,7 +291,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ConstructorArguments
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 200
|
||||
startLine: 198
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -320,7 +320,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Varieties
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 208
|
||||
startLine: 206
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -349,7 +349,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EmptyVarietiesResult
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 213
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -378,7 +378,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ai
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 218
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -407,17 +407,17 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsInappropriateElsewhere
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 223
|
||||
startLine: 222
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nIf this value is true, this action will not automatically be invoked by <xref href=\"TinyLife.Objects.PersonAi\" data-throw-if-not-resolved=\"false\"></xref> on lots that the person does not own.\nAdditionally, when the player invokes an action with this value set to true, the lot's owner will come up to them and tell them to stop.\n"
|
||||
summary: "\nIf this value is true, this action will not automatically be invoked by <xref href=\"TinyLife.Objects.PersonAi\" data-throw-if-not-resolved=\"false\"></xref> on lots that the person does not own.\nAdditionally, when the player invokes an action with this value set to true, the lot's owner will come up to them and tell them to stop.\nTo query this value effectively, you can use <xref href=\"TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType%2cTinyLife.Actions.ActionInfo)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public bool IsInappropriateElsewhere
|
||||
content: public Func<ActionInfo, bool> IsInappropriateElsewhere
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: Public IsInappropriateElsewhere As Boolean
|
||||
type: System.Func{TinyLife.Actions.ActionInfo,System.Boolean}
|
||||
content.vb: Public IsInappropriateElsewhere As Func(Of ActionInfo, Boolean)
|
||||
- uid: TinyLife.Actions.ActionType.TypeSettings.IconName
|
||||
commentId: F:TinyLife.Actions.ActionType.TypeSettings.IconName
|
||||
id: IconName
|
||||
|
@ -436,7 +436,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IconName
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 229
|
||||
startLine: 228
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -465,7 +465,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDisplayName
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 235
|
||||
startLine: 234
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -494,7 +494,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredSkill
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 241
|
||||
startLine: 240
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -523,7 +523,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredAges
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 245
|
||||
startLine: 244
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -552,7 +552,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredEmotion
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 250
|
||||
startLine: 249
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -581,7 +581,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredPersonality
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 255
|
||||
startLine: 254
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -610,7 +610,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IgnoreObjectConditions
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 261
|
||||
startLine: 260
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -639,7 +639,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredPartnerEmployment
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 267
|
||||
startLine: 266
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -668,7 +668,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredPartnerAges
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 272
|
||||
startLine: 271
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -697,7 +697,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiredJob
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 277
|
||||
startLine: 276
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -726,7 +726,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 287
|
||||
startLine: 286
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -767,7 +767,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetData
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 300
|
||||
startLine: 299
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -804,7 +804,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetData
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 305
|
||||
startLine: 304
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -843,7 +843,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetData
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 311
|
||||
startLine: 310
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -882,7 +882,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDataKeys
|
||||
path: ../TinyLife/Actions/ActionType.cs
|
||||
startLine: 316
|
||||
startLine: 315
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1810,17 +1810,111 @@ references:
|
|||
- name: New
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: System.Func{TinyLife.Actions.ActionInfo,System.Boolean}
|
||||
commentId: T:System.Func{TinyLife.Actions.ActionInfo,System.Boolean}
|
||||
parent: System
|
||||
definition: System.Func`2
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
name: Func<ActionInfo, bool>
|
||||
nameWithType: Func<ActionInfo, bool>
|
||||
fullName: System.Func<TinyLife.Actions.ActionInfo, bool>
|
||||
nameWithType.vb: Func(Of ActionInfo, Boolean)
|
||||
fullName.vb: System.Func(Of TinyLife.Actions.ActionInfo, Boolean)
|
||||
name.vb: Func(Of ActionInfo, Boolean)
|
||||
spec.csharp:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: <
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: bool
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
name: bool
|
||||
nameWithType: bool
|
||||
fullName: bool
|
||||
nameWithType.vb: Boolean
|
||||
fullName.vb: Boolean
|
||||
name.vb: Boolean
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
- uid: System.Func`2
|
||||
commentId: T:System.Func`2
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
name: Func<T, TResult>
|
||||
nameWithType: Func<T, TResult>
|
||||
fullName: System.Func<T, TResult>
|
||||
nameWithType.vb: Func(Of T, TResult)
|
||||
fullName.vb: System.Func(Of T, TResult)
|
||||
name.vb: Func(Of T, TResult)
|
||||
spec.csharp:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: <
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: TResult
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: TResult
|
||||
- name: )
|
||||
- uid: MLEM.Ui.UiSystem
|
||||
commentId: T:MLEM.Ui.UiSystem
|
||||
isExternal: true
|
||||
|
@ -1957,40 +2051,6 @@ references:
|
|||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: )
|
||||
- uid: System.Func`2
|
||||
commentId: T:System.Func`2
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
name: Func<T, TResult>
|
||||
nameWithType: Func<T, TResult>
|
||||
fullName: System.Func<T, TResult>
|
||||
nameWithType.vb: Func(Of T, TResult)
|
||||
fullName.vb: System.Func(Of T, TResult)
|
||||
name.vb: Func(Of T, TResult)
|
||||
spec.csharp:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: <
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: TResult
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: TResult
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.ActionType.GetDisplayName(TinyLife.Actions.ActionInfo,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.ActionType.GetDisplayName(TinyLife.Actions.ActionInfo,System.Boolean)
|
||||
isExternal: true
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -113,6 +113,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2780,6 +2781,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -111,6 +111,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2888,6 +2889,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Option
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 70
|
||||
startLine: 71
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -66,7 +66,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 75
|
||||
startLine: 76
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -95,7 +95,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SuccessAction
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 79
|
||||
startLine: 80
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -124,7 +124,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FailAction
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 83
|
||||
startLine: 84
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -153,7 +153,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SuccessChance
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 87
|
||||
startLine: 88
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -182,7 +182,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 96
|
||||
startLine: 97
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -226,7 +226,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 110
|
||||
startLine: 111
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -270,7 +270,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 138
|
||||
startLine: 141
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -320,7 +320,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Execute
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 154
|
||||
startLine: 157
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChoicePromptInfo
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 16
|
||||
startLine: 17
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -62,7 +62,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 23
|
||||
startLine: 24
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -91,7 +91,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Options
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 27
|
||||
startLine: 28
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -120,7 +120,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 34
|
||||
startLine: 35
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -158,7 +158,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreatePromptContent
|
||||
path: ../TinyLife/Actions/ChoicePromptInfo.cs
|
||||
startLine: 45
|
||||
startLine: 46
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -96,6 +96,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2606,6 +2607,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -97,6 +97,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2680,6 +2681,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -96,6 +96,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2666,6 +2667,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -109,6 +109,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2800,6 +2801,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -133,6 +133,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3580,6 +3581,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -127,6 +127,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3247,6 +3248,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -117,6 +117,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3021,6 +3022,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -129,6 +129,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3308,6 +3309,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -110,6 +110,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2774,6 +2775,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -102,6 +102,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2700,6 +2701,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -98,6 +98,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2660,6 +2661,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -107,6 +107,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2713,6 +2714,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -108,6 +108,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2761,6 +2762,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -107,6 +107,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2722,6 +2723,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -94,6 +94,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2465,6 +2466,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -130,6 +130,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3497,6 +3498,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -107,6 +107,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2734,6 +2735,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EvaluationResult
|
||||
path: ../TinyLife/Actions/TalkAction.cs
|
||||
startLine: 524
|
||||
startLine: 526
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -969,7 +969,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EvaluateValues
|
||||
path: ../TinyLife/Actions/TalkAction.cs
|
||||
startLine: 426
|
||||
startLine: 428
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1016,7 +1016,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CheckCanExecute
|
||||
path: ../TinyLife/Actions/TalkAction.cs
|
||||
startLine: 510
|
||||
startLine: 512
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -133,6 +133,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3528,6 +3529,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -96,6 +96,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2568,6 +2569,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -95,6 +95,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2536,6 +2537,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -102,6 +102,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -2593,6 +2594,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -110,6 +110,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -3008,6 +3009,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -11,6 +11,7 @@ items:
|
|||
- TinyLife.Actions.WorkAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.WorkAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
- TinyLife.Actions.WorkAction.CreateFirstActions
|
||||
- TinyLife.Actions.WorkAction.Job
|
||||
- TinyLife.Actions.WorkAction.PreInitialize
|
||||
langs:
|
||||
- csharp
|
||||
|
@ -30,7 +31,7 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nA work action is the action that is used for <xref href=\"TinyLife.Goals.Job\" data-throw-if-not-resolved=\"false\"></xref> instances when a person goes to work\n"
|
||||
summary: "\nA work action is the action that is used for <xref href=\"TinyLife.Actions.WorkAction.Job\" data-throw-if-not-resolved=\"false\"></xref> instances when a person goes to work\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class WorkAction : OutOfTownAction, IGenericDataHolder'
|
||||
|
@ -109,6 +110,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -122,6 +124,37 @@ items:
|
|||
- System.Object.ToString
|
||||
extensionMethods:
|
||||
- TinyLife.Actions.WorkAction.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
- uid: TinyLife.Actions.WorkAction.Job
|
||||
commentId: P:TinyLife.Actions.WorkAction.Job
|
||||
id: Job
|
||||
parent: TinyLife.Actions.WorkAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Job
|
||||
nameWithType: WorkAction.Job
|
||||
fullName: TinyLife.Actions.WorkAction.Job
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/WorkAction.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Job
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 22
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nThe job that this work action is working at.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public Job Job { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: TinyLife.Goals.Job
|
||||
content.vb: Public ReadOnly Property Job As Job
|
||||
overload: TinyLife.Actions.WorkAction.Job*
|
||||
- uid: TinyLife.Actions.WorkAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.WorkAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
id: '#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)'
|
||||
|
@ -140,7 +173,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 24
|
||||
startLine: 31
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -175,7 +208,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateFirstActions
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 28
|
||||
startLine: 34
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -207,7 +240,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PreInitialize
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 37
|
||||
startLine: 43
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -236,7 +269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenInitialize
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 43
|
||||
startLine: 49
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -265,7 +298,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenUpdate
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 49
|
||||
startLine: 62
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -307,7 +340,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenIsCompleted
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 73
|
||||
startLine: 86
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -339,7 +372,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenOnCompleted
|
||||
path: ../TinyLife/Actions/WorkAction.cs
|
||||
startLine: 80
|
||||
startLine: 93
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -355,12 +388,11 @@ items:
|
|||
overridden: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
|
||||
overload: TinyLife.Actions.WorkAction.AndThenOnCompleted*
|
||||
references:
|
||||
- uid: TinyLife.Goals.Job
|
||||
commentId: T:TinyLife.Goals.Job
|
||||
parent: TinyLife.Goals
|
||||
- uid: TinyLife.Actions.WorkAction.Job
|
||||
commentId: P:TinyLife.Actions.WorkAction.Job
|
||||
name: Job
|
||||
nameWithType: Job
|
||||
fullName: TinyLife.Goals.Job
|
||||
nameWithType: WorkAction.Job
|
||||
fullName: TinyLife.Actions.WorkAction.Job
|
||||
- uid: TinyLife.Actions
|
||||
commentId: N:TinyLife.Actions
|
||||
name: TinyLife.Actions
|
||||
|
@ -2746,6 +2778,34 @@ references:
|
|||
- uid: TinyLife.Actions.Action
|
||||
name: Action
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
parent: TinyLife.Actions.Action
|
||||
name: IsInappropriate(ActionType, ActionInfo)
|
||||
nameWithType: Action.IsInappropriate(ActionType, ActionInfo)
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
name: IsInappropriate
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -3145,23 +3205,6 @@ references:
|
|||
- uid: TinyLife.Actions.WorkAction
|
||||
name: WorkAction
|
||||
- name: )
|
||||
- uid: TinyLife.Goals
|
||||
commentId: N:TinyLife.Goals
|
||||
name: TinyLife.Goals
|
||||
nameWithType: TinyLife.Goals
|
||||
fullName: TinyLife.Goals
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Goals
|
||||
name: Goals
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Goals
|
||||
name: Goals
|
||||
- uid: System
|
||||
commentId: N:System
|
||||
isExternal: true
|
||||
|
@ -3316,6 +3359,34 @@ references:
|
|||
- name: .
|
||||
- uid: TinyLife.Utilities
|
||||
name: Utilities
|
||||
- uid: TinyLife.Actions.WorkAction.Job*
|
||||
commentId: Overload:TinyLife.Actions.WorkAction.Job
|
||||
name: Job
|
||||
nameWithType: WorkAction.Job
|
||||
fullName: TinyLife.Actions.WorkAction.Job
|
||||
- uid: TinyLife.Goals.Job
|
||||
commentId: T:TinyLife.Goals.Job
|
||||
parent: TinyLife.Goals
|
||||
name: Job
|
||||
nameWithType: Job
|
||||
fullName: TinyLife.Goals.Job
|
||||
- uid: TinyLife.Goals
|
||||
commentId: N:TinyLife.Goals
|
||||
name: TinyLife.Goals
|
||||
nameWithType: TinyLife.Goals
|
||||
fullName: TinyLife.Goals
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Goals
|
||||
name: Goals
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Goals
|
||||
name: Goals
|
||||
- uid: TinyLife.Actions.WorkAction.#ctor*
|
||||
commentId: Overload:TinyLife.Actions.WorkAction.#ctor
|
||||
name: WorkAction
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CheatDelegate
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 771
|
||||
startLine: 783
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DebugDelegate
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 776
|
||||
startLine: 788
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -119,7 +119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TryCheat
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 601
|
||||
startLine: 612
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Instance
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 438
|
||||
startLine: 443
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -76,7 +76,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Type
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 445
|
||||
startLine: 450
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -115,7 +115,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Amount
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 450
|
||||
startLine: 455
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -154,7 +154,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TotalTime
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 455
|
||||
startLine: 460
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -193,7 +193,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Time
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 460
|
||||
startLine: 465
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -234,7 +234,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 466
|
||||
startLine: 471
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -275,7 +275,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Person
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 471
|
||||
startLine: 476
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -306,7 +306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassTime
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 488
|
||||
startLine: 493
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -338,7 +338,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 502
|
||||
startLine: 507
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
|
|
@ -121,7 +121,9 @@ items:
|
|||
- TinyLife.Emotions.EmotionModifier.MeanConversationPartner
|
||||
- TinyLife.Emotions.EmotionModifier.Name
|
||||
- TinyLife.Emotions.EmotionModifier.NegativeGauge
|
||||
- TinyLife.Emotions.EmotionModifier.OnVacation
|
||||
- TinyLife.Emotions.EmotionModifier.OrderCanceled
|
||||
- TinyLife.Emotions.EmotionModifier.ParentalLeave
|
||||
- TinyLife.Emotions.EmotionModifier.PassedOut
|
||||
- TinyLife.Emotions.EmotionModifier.PeedSelf
|
||||
- TinyLife.Emotions.EmotionModifier.PerfectCreation
|
||||
|
@ -191,6 +193,7 @@ items:
|
|||
- TinyLife.Emotions.EmotionModifier.UnsuccessfulRummaging
|
||||
- TinyLife.Emotions.EmotionModifier.UpsettingConversation
|
||||
- TinyLife.Emotions.EmotionModifier.UsefulProgrammingResearch
|
||||
- TinyLife.Emotions.EmotionModifier.VacationDaysAgain
|
||||
- TinyLife.Emotions.EmotionModifier.WonTournament
|
||||
- TinyLife.Emotions.EmotionModifier.WoodworkingSplinter
|
||||
- TinyLife.Emotions.EmotionModifier.WritersBlock
|
||||
|
@ -4773,6 +4776,87 @@ items:
|
|||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly TastyTea As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.OnVacation
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.OnVacation
|
||||
id: OnVacation
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: OnVacation
|
||||
nameWithType: EmotionModifier.OnVacation
|
||||
fullName: TinyLife.Emotions.EmotionModifier.OnVacation
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnVacation
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 213
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier OnVacation
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly OnVacation As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.ParentalLeave
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.ParentalLeave
|
||||
id: ParentalLeave
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ParentalLeave
|
||||
nameWithType: EmotionModifier.ParentalLeave
|
||||
fullName: TinyLife.Emotions.EmotionModifier.ParentalLeave
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentalLeave
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 214
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier ParentalLeave
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly ParentalLeave As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.VacationDaysAgain
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.VacationDaysAgain
|
||||
id: VacationDaysAgain
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: VacationDaysAgain
|
||||
nameWithType: EmotionModifier.VacationDaysAgain
|
||||
fullName: TinyLife.Emotions.EmotionModifier.VacationDaysAgain
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VacationDaysAgain
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 215
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier VacationDaysAgain
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly VacationDaysAgain As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.GymTrainerPositive
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.GymTrainerPositive
|
||||
id: GymTrainerPositive
|
||||
|
@ -4791,7 +4875,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GymTrainerPositive
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 214
|
||||
startLine: 217
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4818,7 +4902,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GymTrainerNegative
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 215
|
||||
startLine: 218
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4845,7 +4929,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PottySuccess
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 216
|
||||
startLine: 219
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4872,7 +4956,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PottyFail
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 217
|
||||
startLine: 220
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4899,7 +4983,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PottyNotListening
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 218
|
||||
startLine: 221
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4926,7 +5010,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AbortionEmotions
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 219
|
||||
startLine: 222
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4953,7 +5037,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DiaperRash
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 221
|
||||
startLine: 224
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -4980,7 +5064,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GrossDiaperChange
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 222
|
||||
startLine: 225
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5007,7 +5091,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SuddenlyPregnant
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 223
|
||||
startLine: 226
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5034,7 +5118,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PregnancyTestPositive
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 224
|
||||
startLine: 227
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5061,7 +5145,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PregnancyTestNegative
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 225
|
||||
startLine: 228
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5088,7 +5172,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 318
|
||||
startLine: 323
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5117,7 +5201,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Icon
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 322
|
||||
startLine: 327
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5146,7 +5230,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Emotion
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 327
|
||||
startLine: 332
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5175,7 +5259,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Condition
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 333
|
||||
startLine: 338
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5204,7 +5288,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DisplayName
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 340
|
||||
startLine: 345
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5235,7 +5319,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 349
|
||||
startLine: 354
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5279,7 +5363,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 363
|
||||
startLine: 368
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5323,7 +5407,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCausedEmotion
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 372
|
||||
startLine: 377
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5358,7 +5442,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDisplayName
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 388
|
||||
startLine: 393
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5397,7 +5481,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 401
|
||||
startLine: 406
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GameMode
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1101
|
||||
startLine: 1118
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -55,7 +55,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InitialLoad
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1104
|
||||
startLine: 1121
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -83,7 +83,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Splash
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1106
|
||||
startLine: 1123
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -111,7 +111,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MainMenu
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1108
|
||||
startLine: 1125
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -139,7 +139,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SelectHousehold
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1110
|
||||
startLine: 1127
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -167,7 +167,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InGameHousehold
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1112
|
||||
startLine: 1129
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -195,7 +195,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BuildOnly
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1114
|
||||
startLine: 1131
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -223,7 +223,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CharacterCreation
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1116
|
||||
startLine: 1133
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -944,7 +944,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeExtremelyFast
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 737
|
||||
startLine: 742
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -975,7 +975,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanSwitchGameModes
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 748
|
||||
startLine: 753
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1006,7 +1006,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FadeKeyboardLighting
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 763
|
||||
startLine: 768
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1038,7 +1038,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TakeScreenshot
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 789
|
||||
startLine: 794
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1079,7 +1079,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkLotVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 817
|
||||
startLine: 822
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1111,7 +1111,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkLotNonVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 833
|
||||
startLine: 838
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1143,7 +1143,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsLotVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 844
|
||||
startLine: 849
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1178,7 +1178,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CompleteAchievement
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 856
|
||||
startLine: 861
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -29,7 +29,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GenealogyType
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 523
|
||||
startLine: 530
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -61,7 +61,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Unrelated
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 528
|
||||
startLine: 535
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -89,7 +89,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Parent
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 532
|
||||
startLine: 539
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -117,7 +117,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 536
|
||||
startLine: 543
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -145,7 +145,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sibling
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 540
|
||||
startLine: 547
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -173,7 +173,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Nibling
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 544
|
||||
startLine: 551
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -201,7 +201,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pibling
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 548
|
||||
startLine: 555
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -229,7 +229,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Grandparent
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 552
|
||||
startLine: 559
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -257,7 +257,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Grandchild
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 556
|
||||
startLine: 563
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -285,7 +285,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Cousin
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 560
|
||||
startLine: 567
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -313,7 +313,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DistantlyRelated
|
||||
path: ../TinyLife/Relationship.cs
|
||||
startLine: 564
|
||||
startLine: 571
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JobPerformanceDelegate
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 278
|
||||
startLine: 328
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
|
|
@ -11,6 +11,7 @@ items:
|
|||
- TinyLife.Goals.Job.AmountOfRaises
|
||||
- TinyLife.Goals.Job.CurrentHourlyPay
|
||||
- TinyLife.Goals.Job.DailyTasks
|
||||
- TinyLife.Goals.Job.DaysOnVacation
|
||||
- TinyLife.Goals.Job.GetCoworkers
|
||||
- TinyLife.Goals.Job.GetCoworkersAtWork
|
||||
- TinyLife.Goals.Job.GetRaise
|
||||
|
@ -20,9 +21,11 @@ items:
|
|||
- TinyLife.Goals.Job.Performance
|
||||
- TinyLife.Goals.Job.Person
|
||||
- TinyLife.Goals.Job.RequiredPromotionPerformance
|
||||
- TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
- TinyLife.Goals.Job.Type
|
||||
- TinyLife.Goals.Job.Update(System.TimeSpan)
|
||||
- TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
|
||||
- TinyLife.Goals.Job.VacationDaysAvailable
|
||||
- TinyLife.Goals.Job.Validate(TinyLife.Objects.Person)
|
||||
langs:
|
||||
- csharp
|
||||
|
@ -42,7 +45,7 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nA job is a kind of work that a <xref href=\"TinyLife.Goals.Job.Person\" data-throw-if-not-resolved=\"false\"></xref> can have.\nThe person's current job is accessible using <xref href=\"TinyLife.Objects.Person.Job\" data-throw-if-not-resolved=\"false\"></xref>.\nA job instance is constructed from its underlying <xref href=\"TinyLife.Goals.JobType\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
summary: "\nA job is a kind of work that a <xref href=\"TinyLife.Goals.Job.Person\" data-throw-if-not-resolved=\"false\"></xref> can have.\nThe person's current jobs are accessible using <xref href=\"TinyLife.Objects.Person.Jobs\" data-throw-if-not-resolved=\"false\"></xref>.\nA job instance is constructed from its underlying <xref href=\"TinyLife.Goals.JobType\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
|
@ -401,6 +404,86 @@ items:
|
|||
type: System.Single
|
||||
content.vb: Public ReadOnly Property CurrentHourlyPay As Single
|
||||
overload: TinyLife.Goals.Job.CurrentHourlyPay*
|
||||
- uid: TinyLife.Goals.Job.VacationDaysAvailable
|
||||
commentId: F:TinyLife.Goals.Job.VacationDaysAvailable
|
||||
id: VacationDaysAvailable
|
||||
parent: TinyLife.Goals.Job
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: VacationDaysAvailable
|
||||
nameWithType: Job.VacationDaysAvailable
|
||||
fullName: TinyLife.Goals.Job.VacationDaysAvailable
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Goals/Job.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VacationDaysAvailable
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 75
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nThe amount of vacation days currently available.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[DataMember]
|
||||
|
||||
public int VacationDaysAvailable
|
||||
return:
|
||||
type: System.Int32
|
||||
content.vb: >-
|
||||
<DataMember>
|
||||
|
||||
Public VacationDaysAvailable As Integer
|
||||
attributes:
|
||||
- type: System.Runtime.Serialization.DataMemberAttribute
|
||||
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
|
||||
arguments: []
|
||||
- uid: TinyLife.Goals.Job.DaysOnVacation
|
||||
commentId: P:TinyLife.Goals.Job.DaysOnVacation
|
||||
id: DaysOnVacation
|
||||
parent: TinyLife.Goals.Job
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: DaysOnVacation
|
||||
nameWithType: Job.DaysOnVacation
|
||||
fullName: TinyLife.Goals.Job.DaysOnVacation
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Goals/Job.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DaysOnVacation
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 80
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nThe amount of days remaining on the current vacation. If this value is 0, this job is not currently on vacation.\nUse <xref href=\"TinyLife.Goals.Job.StartVacation(System.Int32%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> to edit this value.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[DataMember]
|
||||
|
||||
public int DaysOnVacation { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Int32
|
||||
content.vb: >-
|
||||
<DataMember>
|
||||
|
||||
Public Property DaysOnVacation As Integer
|
||||
overload: TinyLife.Goals.Job.DaysOnVacation*
|
||||
attributes:
|
||||
- type: System.Runtime.Serialization.DataMemberAttribute
|
||||
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
|
||||
arguments: []
|
||||
- uid: TinyLife.Goals.Job.#ctor(TinyLife.Goals.JobType,TinyLife.Objects.Person,System.Int32)
|
||||
commentId: M:TinyLife.Goals.Job.#ctor(TinyLife.Goals.JobType,TinyLife.Objects.Person,System.Int32)
|
||||
id: '#ctor(TinyLife.Goals.JobType,TinyLife.Objects.Person,System.Int32)'
|
||||
|
@ -419,7 +502,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 81
|
||||
startLine: 94
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -460,7 +543,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Update
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 94
|
||||
startLine: 107
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -492,7 +575,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateWorking
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 113
|
||||
startLine: 153
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -533,7 +616,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddPerformance
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 146
|
||||
startLine: 186
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -568,7 +651,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddLevel
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 172
|
||||
startLine: 212
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -606,7 +689,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRaise
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 214
|
||||
startLine: 254
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -637,7 +720,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HasRequiredPromotionSkills
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 233
|
||||
startLine: 273
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -668,7 +751,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCoworkers
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 245
|
||||
startLine: 285
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -699,7 +782,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCoworkersAtWork
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 253
|
||||
startLine: 293
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -730,7 +813,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 261
|
||||
startLine: 301
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -746,17 +829,55 @@ items:
|
|||
description: false if the object is not valid, true otherwise
|
||||
content.vb: Public Function Validate(person As Person) As Boolean
|
||||
overload: TinyLife.Goals.Job.Validate*
|
||||
- uid: TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
commentId: M:TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
id: StartVacation(System.Int32,System.Single)
|
||||
parent: TinyLife.Goals.Job
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: StartVacation(int, float)
|
||||
nameWithType: Job.StartVacation(int, float)
|
||||
fullName: TinyLife.Goals.Job.StartVacation(int, float)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Goals/Job.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StartVacation
|
||||
path: ../TinyLife/Goals/Job.cs
|
||||
startLine: 320
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nStarts a vacation for the given amount of <code data-dev-comment-type=\"paramref\" class=\"paramref\">days</code> with the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">payModifier</code>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public void StartVacation(int days, float payModifier = 1)
|
||||
parameters:
|
||||
- id: days
|
||||
type: System.Int32
|
||||
description: The amount of days.
|
||||
- id: payModifier
|
||||
type: System.Single
|
||||
description: The amount that the daily pay on vacation should be multiplied with, defaults to 1.
|
||||
content.vb: Public Sub StartVacation(days As Integer, payModifier As Single = 1)
|
||||
overload: TinyLife.Goals.Job.StartVacation*
|
||||
nameWithType.vb: Job.StartVacation(Integer, Single)
|
||||
fullName.vb: TinyLife.Goals.Job.StartVacation(Integer, Single)
|
||||
name.vb: StartVacation(Integer, Single)
|
||||
references:
|
||||
- uid: TinyLife.Goals.Job.Person
|
||||
commentId: P:TinyLife.Goals.Job.Person
|
||||
name: Person
|
||||
nameWithType: Job.Person
|
||||
fullName: TinyLife.Goals.Job.Person
|
||||
- uid: TinyLife.Objects.Person.Job
|
||||
commentId: P:TinyLife.Objects.Person.Job
|
||||
name: Job
|
||||
nameWithType: Person.Job
|
||||
fullName: TinyLife.Objects.Person.Job
|
||||
- uid: TinyLife.Objects.Person.Jobs
|
||||
commentId: F:TinyLife.Objects.Person.Jobs
|
||||
name: Jobs
|
||||
nameWithType: Person.Jobs
|
||||
fullName: TinyLife.Objects.Person.Jobs
|
||||
- uid: TinyLife.Goals.JobType
|
||||
commentId: T:TinyLife.Goals.JobType
|
||||
parent: TinyLife.Goals
|
||||
|
@ -1519,6 +1640,51 @@ references:
|
|||
name: CurrentHourlyPay
|
||||
nameWithType: Job.CurrentHourlyPay
|
||||
fullName: TinyLife.Goals.Job.CurrentHourlyPay
|
||||
- uid: TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
commentId: M:TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
name: StartVacation(int, float)
|
||||
nameWithType: Job.StartVacation(int, float)
|
||||
fullName: TinyLife.Goals.Job.StartVacation(int, float)
|
||||
nameWithType.vb: Job.StartVacation(Integer, Single)
|
||||
fullName.vb: TinyLife.Goals.Job.StartVacation(Integer, Single)
|
||||
name.vb: StartVacation(Integer, Single)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
name: StartVacation
|
||||
- name: (
|
||||
- uid: System.Int32
|
||||
name: int
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Goals.Job.StartVacation(System.Int32,System.Single)
|
||||
name: StartVacation
|
||||
- name: (
|
||||
- uid: System.Int32
|
||||
name: Integer
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
- uid: TinyLife.Goals.Job.DaysOnVacation*
|
||||
commentId: Overload:TinyLife.Goals.Job.DaysOnVacation
|
||||
name: DaysOnVacation
|
||||
nameWithType: Job.DaysOnVacation
|
||||
fullName: TinyLife.Goals.Job.DaysOnVacation
|
||||
- uid: TinyLife.Goals.Job.#ctor*
|
||||
commentId: Overload:TinyLife.Goals.Job.#ctor
|
||||
name: Job
|
||||
|
@ -1872,3 +2038,8 @@ references:
|
|||
name: Validate
|
||||
nameWithType: Job.Validate
|
||||
fullName: TinyLife.Goals.Job.Validate
|
||||
- uid: TinyLife.Goals.Job.StartVacation*
|
||||
commentId: Overload:TinyLife.Goals.Job.StartVacation
|
||||
name: StartVacation
|
||||
nameWithType: Job.StartVacation
|
||||
fullName: TinyLife.Goals.Job.StartVacation
|
||||
|
|
|
@ -39,7 +39,7 @@ items:
|
|||
- TinyLife.Goals.JobType.Scientist
|
||||
- TinyLife.Goals.JobType.SourceString
|
||||
- TinyLife.Goals.JobType.Teacher
|
||||
- TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
- TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
- TinyLife.Goals.JobType.Types
|
||||
- TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
|
||||
- TinyLife.Goals.JobType.WorkHours
|
||||
|
@ -902,11 +902,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsTimeToWork
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 217
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nReturns whether the given time (or the game's current time) is in the bounds of <xref href=\"TinyLife.Goals.JobType.WorkHours\" data-throw-if-not-resolved=\"false\"></xref> and outside of the bounds of <xref href=\"TinyLife.Goals.JobType.OffWorkDays\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this method returns true, <xref href=\"TinyLife.Actions.WorkAction\" data-throw-if-not-resolved=\"false\"></xref> can be started.\n"
|
||||
summary: "\nReturns whether the given time (or the game's current time) is in the bounds of <xref href=\"TinyLife.Goals.JobType.WorkHours\" data-throw-if-not-resolved=\"false\"></xref> and outside of the bounds of <xref href=\"TinyLife.Goals.JobType.OffWorkDays\" data-throw-if-not-resolved=\"false\"></xref>. Note that this method does not check additional criteria like whether a person is on vacation, based on <xref href=\"TinyLife.Goals.Job.DaysOnVacation\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual bool IsTimeToWork(TimeSpan time)
|
||||
|
@ -919,16 +919,16 @@ items:
|
|||
description: true if it is time to work, false otherwise
|
||||
content.vb: Public Overridable Function IsTimeToWork(time As TimeSpan) As Boolean
|
||||
overload: TinyLife.Goals.JobType.IsTimeToWork*
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
commentId: M:TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
id: ToScheduleString(System.DayOfWeek)
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
commentId: M:TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
id: ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
parent: TinyLife.Goals.JobType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ToScheduleString(DayOfWeek)
|
||||
nameWithType: JobType.ToScheduleString(DayOfWeek)
|
||||
fullName: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
name: ToScheduleString(TimeSpan?)
|
||||
nameWithType: JobType.ToScheduleString(TimeSpan?)
|
||||
fullName: TinyLife.Goals.JobType.ToScheduleString(System.TimeSpan?)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
|
@ -937,21 +937,21 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToScheduleString
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 226
|
||||
startLine: 225
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nReturns a string representation of the schedule.\nThe string includes a line that states the <xref href=\"TinyLife.Goals.JobType.WorkHours\" data-throw-if-not-resolved=\"false\"></xref> and a line that states the <xref href=\"TinyLife.Goals.JobType.OffWorkDays\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual string ToScheduleString(DayOfWeek weekday)
|
||||
content: public virtual string ToScheduleString(TimeSpan? currentTime = null)
|
||||
parameters:
|
||||
- id: weekday
|
||||
type: System.DayOfWeek
|
||||
- id: currentTime
|
||||
type: System.Nullable{System.TimeSpan}
|
||||
return:
|
||||
type: System.String
|
||||
description: A string representation of this job's schedule
|
||||
content.vb: Public Overridable Function ToScheduleString(weekday As DayOfWeek) As String
|
||||
content.vb: Public Overridable Function ToScheduleString(currentTime As TimeSpan? = Nothing) As String
|
||||
overload: TinyLife.Goals.JobType.ToScheduleString*
|
||||
- uid: TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
|
||||
commentId: M:TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
|
||||
|
@ -971,7 +971,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDisplayName
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 240
|
||||
startLine: 239
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -1009,7 +1009,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRequiredPromotionSkills
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 252
|
||||
startLine: 251
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -1044,7 +1044,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnWorkStartsInAnHour
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 267
|
||||
startLine: 266
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -1076,11 +1076,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnWorkHoursOver
|
||||
path: ../TinyLife/Goals/JobType.cs
|
||||
startLine: 278
|
||||
startLine: 277
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
summary: "\nA method that is called when the work hours for the given <xref href=\"TinyLife.Goals.Job\" data-throw-if-not-resolved=\"false\"></xref> instance are over for this job.\nNote that this method is also called if the person didn't go to work, or left early.\nBy default, the <xref href=\"TinyLife.Goals.JobType.DailyTasks\" data-throw-if-not-resolved=\"false\"></xref> are reset.\n"
|
||||
summary: "\nA method that is called when the work hours for the given <xref href=\"TinyLife.Goals.Job\" data-throw-if-not-resolved=\"false\"></xref> instance are over for this job.\nNote that this method is also called if the person didn't go to work, is on vacation, or left early.\nBy default, the <xref href=\"TinyLife.Goals.JobType.DailyTasks\" data-throw-if-not-resolved=\"false\"></xref> are reset.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual void OnWorkHoursOver(Job job)
|
||||
|
@ -2464,6 +2464,11 @@ references:
|
|||
name: OffWorkDays
|
||||
nameWithType: JobType.OffWorkDays
|
||||
fullName: TinyLife.Goals.JobType.OffWorkDays
|
||||
- uid: TinyLife.Goals.Job.DaysOnVacation
|
||||
commentId: P:TinyLife.Goals.Job.DaysOnVacation
|
||||
name: DaysOnVacation
|
||||
nameWithType: Job.DaysOnVacation
|
||||
fullName: TinyLife.Goals.Job.DaysOnVacation
|
||||
- uid: TinyLife.Goals.JobType.IsTimeToWork*
|
||||
commentId: Overload:TinyLife.Goals.JobType.IsTimeToWork
|
||||
name: IsTimeToWork
|
||||
|
@ -2482,33 +2487,25 @@ references:
|
|||
name: ToScheduleString
|
||||
nameWithType: JobType.ToScheduleString
|
||||
fullName: TinyLife.Goals.JobType.ToScheduleString
|
||||
- uid: TinyLife.Goals.JobType.GetDisplayName*
|
||||
commentId: Overload:TinyLife.Goals.JobType.GetDisplayName
|
||||
name: GetDisplayName
|
||||
nameWithType: JobType.GetDisplayName
|
||||
fullName: TinyLife.Goals.JobType.GetDisplayName
|
||||
- uid: System.Nullable{System.Int32}
|
||||
commentId: T:System.Nullable{System.Int32}
|
||||
- uid: System.Nullable{System.TimeSpan}
|
||||
commentId: T:System.Nullable{System.TimeSpan}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
name: int?
|
||||
nameWithType: int?
|
||||
fullName: int?
|
||||
nameWithType.vb: Integer?
|
||||
fullName.vb: Integer?
|
||||
name.vb: Integer?
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
name: TimeSpan?
|
||||
nameWithType: TimeSpan?
|
||||
fullName: System.TimeSpan?
|
||||
spec.csharp:
|
||||
- uid: System.Int32
|
||||
name: int
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: System.Int32
|
||||
name: Integer
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: '?'
|
||||
- uid: System.Nullable`1
|
||||
commentId: T:System.Nullable`1
|
||||
|
@ -2538,6 +2535,34 @@ references:
|
|||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: TinyLife.Goals.JobType.GetDisplayName*
|
||||
commentId: Overload:TinyLife.Goals.JobType.GetDisplayName
|
||||
name: GetDisplayName
|
||||
nameWithType: JobType.GetDisplayName
|
||||
fullName: TinyLife.Goals.JobType.GetDisplayName
|
||||
- uid: System.Nullable{System.Int32}
|
||||
commentId: T:System.Nullable{System.Int32}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
name: int?
|
||||
nameWithType: int?
|
||||
fullName: int?
|
||||
nameWithType.vb: Integer?
|
||||
fullName.vb: Integer?
|
||||
name.vb: Integer?
|
||||
spec.csharp:
|
||||
- uid: System.Int32
|
||||
name: int
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: System.Int32
|
||||
name: Integer
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: '?'
|
||||
- uid: TinyLife.Goals.JobType.GetRequiredPromotionSkills*
|
||||
commentId: Overload:TinyLife.Goals.JobType.GetRequiredPromotionSkills
|
||||
name: GetRequiredPromotionSkills
|
||||
|
|
|
@ -11,6 +11,7 @@ items:
|
|||
- TinyLife.Goals.MemoryType.FamilySocial
|
||||
- TinyLife.Goals.MemoryType.FoundOutPregnancy
|
||||
- TinyLife.Goals.MemoryType.HadAbortion
|
||||
- TinyLife.Goals.MemoryType.HadChild
|
||||
- TinyLife.Goals.MemoryType.HadFirstKiss
|
||||
- TinyLife.Goals.MemoryType.MayBePregnant
|
||||
- TinyLife.Goals.MemoryType.Name
|
||||
|
@ -368,6 +369,33 @@ items:
|
|||
return:
|
||||
type: TinyLife.Goals.MemoryType
|
||||
content.vb: Public Shared ReadOnly HadFirstKiss As MemoryType
|
||||
- uid: TinyLife.Goals.MemoryType.HadChild
|
||||
commentId: F:TinyLife.Goals.MemoryType.HadChild
|
||||
id: HadChild
|
||||
parent: TinyLife.Goals.MemoryType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: HadChild
|
||||
nameWithType: MemoryType.HadChild
|
||||
fullName: TinyLife.Goals.MemoryType.HadChild
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Goals/MemoryType.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HadChild
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 42
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
syntax:
|
||||
content: public static readonly MemoryType HadChild
|
||||
return:
|
||||
type: TinyLife.Goals.MemoryType
|
||||
content.vb: Public Shared ReadOnly HadChild As MemoryType
|
||||
- uid: TinyLife.Goals.MemoryType.HadAbortion
|
||||
commentId: F:TinyLife.Goals.MemoryType.HadAbortion
|
||||
id: HadAbortion
|
||||
|
@ -386,7 +414,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HadAbortion
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 44
|
||||
startLine: 45
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -413,7 +441,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MayBePregnant
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 45
|
||||
startLine: 46
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -440,7 +468,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FoundOutPregnancy
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 46
|
||||
startLine: 47
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -467,7 +495,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToldAboutPregnancy
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 47
|
||||
startLine: 48
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -494,7 +522,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 54
|
||||
startLine: 55
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -523,7 +551,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ConstructedType
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 58
|
||||
startLine: 59
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -552,7 +580,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 61
|
||||
startLine: 62
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -585,7 +613,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 68
|
||||
startLine: 69
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -623,7 +651,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Construct
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 80
|
||||
startLine: 81
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -670,7 +698,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Goals/MemoryType.cs
|
||||
startLine: 95
|
||||
startLine: 96
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
|
|
@ -67,7 +67,7 @@ items:
|
|||
- TinyLife.Goals.JobType.SourceString
|
||||
- TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person,System.Int32)
|
||||
- TinyLife.Goals.JobType.IsTimeToWork(System.TimeSpan)
|
||||
- TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
- TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
- TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
|
||||
- TinyLife.Goals.JobType.GetRequiredPromotionSkills(TinyLife.Goals.Job)
|
||||
- TinyLife.Goals.JobType.OnWorkStartsInAnHour(TinyLife.Goals.Job)
|
||||
|
@ -546,31 +546,33 @@ references:
|
|||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: )
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
commentId: M:TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
commentId: M:TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
parent: TinyLife.Goals.JobType
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.dayofweek
|
||||
name: ToScheduleString(DayOfWeek)
|
||||
nameWithType: JobType.ToScheduleString(DayOfWeek)
|
||||
fullName: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
name: ToScheduleString(TimeSpan?)
|
||||
nameWithType: JobType.ToScheduleString(TimeSpan?)
|
||||
fullName: TinyLife.Goals.JobType.ToScheduleString(System.TimeSpan?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
name: ToScheduleString
|
||||
- name: (
|
||||
- uid: System.DayOfWeek
|
||||
name: DayOfWeek
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.dayofweek
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.DayOfWeek)
|
||||
- uid: TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
|
||||
name: ToScheduleString
|
||||
- name: (
|
||||
- uid: System.DayOfWeek
|
||||
name: DayOfWeek
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.dayofweek
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
|
||||
commentId: M:TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
|
||||
|
|
|
@ -35,7 +35,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LnCategory
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 194
|
||||
startLine: 190
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -64,7 +64,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ui
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 197
|
||||
startLine: 193
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -92,7 +92,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Actions
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 199
|
||||
startLine: 195
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -120,7 +120,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BuildMode
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 201
|
||||
startLine: 197
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -148,7 +148,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Clothes
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 203
|
||||
startLine: 199
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -176,7 +176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Food
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 205
|
||||
startLine: 201
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -204,7 +204,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Personalities
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 207
|
||||
startLine: 203
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -232,7 +232,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Skills
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 209
|
||||
startLine: 205
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -260,7 +260,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Jobs
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 211
|
||||
startLine: 207
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -288,7 +288,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Emotions
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 213
|
||||
startLine: 209
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -316,7 +316,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hints
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 215
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -344,7 +344,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InGameHints
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 217
|
||||
startLine: 213
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -372,7 +372,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Goals
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 219
|
||||
startLine: 215
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -400,7 +400,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Names
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 221
|
||||
startLine: 217
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -428,7 +428,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChoicePrompts
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 223
|
||||
startLine: 219
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -456,7 +456,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Achievements
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 225
|
||||
startLine: 221
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -484,7 +484,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Overrides
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 227
|
||||
startLine: 223
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Localization
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 26
|
||||
startLine: 22
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LanguageNames
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 31
|
||||
startLine: 27
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -92,7 +92,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Names
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 36
|
||||
startLine: 32
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -121,7 +121,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetLanguage
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 54
|
||||
startLine: 50
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -156,7 +156,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Reload
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 65
|
||||
startLine: 61
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -184,7 +184,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Get
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 90
|
||||
startLine: 86
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -225,7 +225,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Get
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 108
|
||||
startLine: 104
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -269,7 +269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetKeys
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 117
|
||||
startLine: 113
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -10,6 +10,7 @@ items:
|
|||
- TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
|
||||
- TinyLife.Mods.Mod.Icon
|
||||
- TinyLife.Mods.Mod.Initialize(ExtremelySimpleLogger.Logger,MLEM.Data.Content.RawContentManager,MLEM.Data.RuntimeTexturePacker,TinyLife.Mods.ModInfo)
|
||||
- TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
- TinyLife.Mods.Mod.Name
|
||||
- TinyLife.Mods.Mod.PopulateOptions(MLEM.Ui.Elements.Group,TinyLife.Mods.ModInfo)
|
||||
- TinyLife.Mods.Mod.RequiresHarmony
|
||||
|
@ -141,6 +142,37 @@ items:
|
|||
type: MLEM.Textures.TextureRegion
|
||||
content.vb: Public Overridable ReadOnly Property Icon As TextureRegion
|
||||
overload: TinyLife.Mods.Mod.Icon*
|
||||
- uid: TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
commentId: P:TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
id: IssueTrackerUrl
|
||||
parent: TinyLife.Mods.Mod
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IssueTrackerUrl
|
||||
nameWithType: Mod.IssueTrackerUrl
|
||||
fullName: TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Mods/Mod.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IssueTrackerUrl
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 41
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
summary: "\nAn optional string that will be the destination of a clickable text in the main menu when this mod fails to initialize (<xref href=\"TinyLife.Mods.Mod.Initialize(ExtremelySimpleLogger.Logger%2cMLEM.Data.Content.RawContentManager%2cMLEM.Data.RuntimeTexturePacker%2cTinyLife.Mods.ModInfo)\" data-throw-if-not-resolved=\"false\"></xref>) or add game content (<xref href=\"TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl%2cTinyLife.Mods.ModInfo)\" data-throw-if-not-resolved=\"false\"></xref>).\nNote that this will not be displayed when the mod fails to load entirely, since this class will not have had time to instantiate.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual string IssueTrackerUrl { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: System.String
|
||||
content.vb: Public Overridable ReadOnly Property IssueTrackerUrl As String
|
||||
overload: TinyLife.Mods.Mod.IssueTrackerUrl*
|
||||
- uid: TinyLife.Mods.Mod.RequiresHarmony
|
||||
commentId: P:TinyLife.Mods.Mod.RequiresHarmony
|
||||
id: RequiresHarmony
|
||||
|
@ -159,7 +191,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RequiresHarmony
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 42
|
||||
startLine: 47
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -190,7 +222,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Initialize
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 52
|
||||
startLine: 57
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -231,7 +263,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddGameContent
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 64
|
||||
startLine: 69
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -266,7 +298,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCustomFurnitureTextures
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 72
|
||||
startLine: 77
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -300,7 +332,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PopulateOptions
|
||||
path: ../TinyLife/Mods/Mod.cs
|
||||
startLine: 83
|
||||
startLine: 88
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -723,18 +755,6 @@ references:
|
|||
- uid: MLEM.Textures
|
||||
name: Textures
|
||||
isExternal: true
|
||||
- uid: HarmonyLib.Harmony
|
||||
commentId: T:HarmonyLib.Harmony
|
||||
parent: HarmonyLib
|
||||
isExternal: true
|
||||
name: Harmony
|
||||
nameWithType: Harmony
|
||||
fullName: HarmonyLib.Harmony
|
||||
- uid: TinyLife.Mods.ModInfo.Harmony
|
||||
commentId: F:TinyLife.Mods.ModInfo.Harmony
|
||||
name: Harmony
|
||||
nameWithType: ModInfo.Harmony
|
||||
fullName: TinyLife.Mods.ModInfo.Harmony
|
||||
- uid: TinyLife.Mods.Mod.Initialize(ExtremelySimpleLogger.Logger,MLEM.Data.Content.RawContentManager,MLEM.Data.RuntimeTexturePacker,TinyLife.Mods.ModInfo)
|
||||
commentId: M:TinyLife.Mods.Mod.Initialize(ExtremelySimpleLogger.Logger,MLEM.Data.Content.RawContentManager,MLEM.Data.RuntimeTexturePacker,TinyLife.Mods.ModInfo)
|
||||
isExternal: true
|
||||
|
@ -785,6 +805,50 @@ references:
|
|||
- uid: TinyLife.Mods.ModInfo
|
||||
name: ModInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl,TinyLife.Mods.ModInfo)
|
||||
commentId: M:TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl,TinyLife.Mods.ModInfo)
|
||||
name: AddGameContent(GameImpl, ModInfo)
|
||||
nameWithType: Mod.AddGameContent(GameImpl, ModInfo)
|
||||
fullName: TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl, TinyLife.Mods.ModInfo)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl,TinyLife.Mods.ModInfo)
|
||||
name: AddGameContent
|
||||
- name: (
|
||||
- uid: TinyLife.GameImpl
|
||||
name: GameImpl
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Mods.ModInfo
|
||||
name: ModInfo
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Mods.Mod.AddGameContent(TinyLife.GameImpl,TinyLife.Mods.ModInfo)
|
||||
name: AddGameContent
|
||||
- name: (
|
||||
- uid: TinyLife.GameImpl
|
||||
name: GameImpl
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Mods.ModInfo
|
||||
name: ModInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Mods.Mod.IssueTrackerUrl*
|
||||
commentId: Overload:TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
name: IssueTrackerUrl
|
||||
nameWithType: Mod.IssueTrackerUrl
|
||||
fullName: TinyLife.Mods.Mod.IssueTrackerUrl
|
||||
- uid: HarmonyLib.Harmony
|
||||
commentId: T:HarmonyLib.Harmony
|
||||
parent: HarmonyLib
|
||||
isExternal: true
|
||||
name: Harmony
|
||||
nameWithType: Harmony
|
||||
fullName: HarmonyLib.Harmony
|
||||
- uid: TinyLife.Mods.ModInfo.Harmony
|
||||
commentId: F:TinyLife.Mods.ModInfo.Harmony
|
||||
name: Harmony
|
||||
nameWithType: ModInfo.Harmony
|
||||
fullName: TinyLife.Mods.ModInfo.Harmony
|
||||
- uid: System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform)
|
||||
commentId: M:System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform)
|
||||
isExternal: true
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ModInfo
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 143
|
||||
startLine: 164
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -70,7 +70,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Id
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 148
|
||||
startLine: 169
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -99,7 +99,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mod
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 152
|
||||
startLine: 173
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -128,7 +128,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Logger
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 157
|
||||
startLine: 178
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -157,7 +157,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Content
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 162
|
||||
startLine: 183
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -186,11 +186,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Harmony
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 167
|
||||
startLine: 188
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
summary: "\nThe <xref href=\"HarmonyLib.Harmony\" data-throw-if-not-resolved=\"false\"></xref> instance that this mod can use.\nThis value is only set if <xref href=\"TinyLife.Mods.Mod.RequiresHarmony\" data-throw-if-not-resolved=\"false\"></xref> was <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool\">true</a> when the <xref href=\"TinyLife.Mods.ModInfo.Mod\" data-throw-if-not-resolved=\"false\"></xref> was loaded.\n"
|
||||
summary: "\nThe <xref href=\"HarmonyLib.Harmony\" data-throw-if-not-resolved=\"false\"></xref> instance that this mod can use, whose <xref href=\"HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)\" data-throw-if-not-resolved=\"false\"></xref> method is called automatically after this mod is loaded.\nThis value is only set if <xref href=\"TinyLife.Mods.Mod.RequiresHarmony\" data-throw-if-not-resolved=\"false\"></xref> was <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool\">true</a> when the <xref href=\"TinyLife.Mods.ModInfo.Mod\" data-throw-if-not-resolved=\"false\"></xref> was loaded.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public readonly Harmony Harmony
|
||||
|
@ -215,7 +215,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OptionsFile
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 171
|
||||
startLine: 192
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -244,7 +244,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Finalize
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 188
|
||||
startLine: 209
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -274,7 +274,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dispose
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 193
|
||||
startLine: 214
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -303,7 +303,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToString
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 200
|
||||
startLine: 221
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -333,7 +333,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SaveOptions
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 217
|
||||
startLine: 240
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -371,7 +371,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LoadOptions
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 235
|
||||
startLine: 258
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -802,6 +802,33 @@ references:
|
|||
name: Harmony
|
||||
nameWithType: Harmony
|
||||
fullName: HarmonyLib.Harmony
|
||||
- uid: HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)
|
||||
commentId: M:HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly
|
||||
name: PatchAll(Assembly)
|
||||
nameWithType: Harmony.PatchAll(Assembly)
|
||||
fullName: HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)
|
||||
spec.csharp:
|
||||
- uid: HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)
|
||||
name: PatchAll
|
||||
isExternal: true
|
||||
- name: (
|
||||
- uid: System.Reflection.Assembly
|
||||
name: Assembly
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: HarmonyLib.Harmony.PatchAll(System.Reflection.Assembly)
|
||||
name: PatchAll
|
||||
isExternal: true
|
||||
- name: (
|
||||
- uid: System.Reflection.Assembly
|
||||
name: Assembly
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly
|
||||
- name: )
|
||||
- uid: TinyLife.Mods.Mod.RequiresHarmony
|
||||
commentId: P:TinyLife.Mods.Mod.RequiresHarmony
|
||||
name: RequiresHarmony
|
||||
|
|
|
@ -5,6 +5,7 @@ items:
|
|||
id: ModLoader
|
||||
parent: TinyLife.Mods
|
||||
children:
|
||||
- TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame[])
|
||||
- TinyLife.Mods.ModLoader.GetModsFolder
|
||||
- TinyLife.Mods.ModLoader.TryGetModInfo(System.String,TinyLife.Mods.ModInfo@)
|
||||
langs:
|
||||
|
@ -21,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ModLoader
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 24
|
||||
startLine: 25
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -58,7 +59,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TryGetModInfo
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 36
|
||||
startLine: 37
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -99,7 +100,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetModsFolder
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 44
|
||||
startLine: 45
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -112,6 +113,44 @@ items:
|
|||
description: The mod directory
|
||||
content.vb: Public Shared Function GetModsFolder() As DirectoryInfo
|
||||
overload: TinyLife.Mods.ModLoader.GetModsFolder*
|
||||
- uid: TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame[])
|
||||
commentId: M:TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame[])
|
||||
id: GetExecutingMod(System.Diagnostics.StackFrame[])
|
||||
parent: TinyLife.Mods.ModLoader
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetExecutingMod(StackFrame[])
|
||||
nameWithType: ModLoader.GetExecutingMod(StackFrame[])
|
||||
fullName: TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame[])
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Mods/ModLoader.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetExecutingMod
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 55
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
summary: "\nReturns the mod that is currently executing code.\nNote that this method works by traversing the current <xref href=\"System.Diagnostics.StackTrace\" data-throw-if-not-resolved=\"false\"></xref>, or a passed <xref href=\"System.Diagnostics.StackFrame\" data-throw-if-not-resolved=\"false\"></xref> array, for an assembly that matches a mod assembly. This means that this method is somewhat of a heuristic, and may not work correctly in all cases.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static ModInfo GetExecutingMod(StackFrame[] frames = null)
|
||||
parameters:
|
||||
- id: frames
|
||||
type: System.Diagnostics.StackFrame[]
|
||||
description: The stack frames to use, if using the current <xref href="System.Diagnostics.StackTrace" data-throw-if-not-resolved="false"></xref> is not desired.
|
||||
return:
|
||||
type: TinyLife.Mods.ModInfo
|
||||
description: The <xref href="TinyLife.Mods.ModInfo" data-throw-if-not-resolved="false"></xref> of the currently executing mod, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> if the base game is currently executing.
|
||||
content.vb: Public Shared Function GetExecutingMod(frames As StackFrame() = Nothing) As ModInfo
|
||||
overload: TinyLife.Mods.ModLoader.GetExecutingMod*
|
||||
nameWithType.vb: ModLoader.GetExecutingMod(StackFrame())
|
||||
fullName.vb: TinyLife.Mods.ModLoader.GetExecutingMod(System.Diagnostics.StackFrame())
|
||||
name.vb: GetExecutingMod(StackFrame())
|
||||
references:
|
||||
- uid: TinyLife.Mods.Mod
|
||||
commentId: T:TinyLife.Mods.Mod
|
||||
|
@ -461,3 +500,45 @@ references:
|
|||
name: IO
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.io
|
||||
- uid: System.Diagnostics.StackTrace
|
||||
commentId: T:System.Diagnostics.StackTrace
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.diagnostics.stacktrace
|
||||
name: StackTrace
|
||||
nameWithType: StackTrace
|
||||
fullName: System.Diagnostics.StackTrace
|
||||
- uid: System.Diagnostics.StackFrame
|
||||
commentId: T:System.Diagnostics.StackFrame
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.diagnostics.stackframe
|
||||
name: StackFrame
|
||||
nameWithType: StackFrame
|
||||
fullName: System.Diagnostics.StackFrame
|
||||
- uid: TinyLife.Mods.ModLoader.GetExecutingMod*
|
||||
commentId: Overload:TinyLife.Mods.ModLoader.GetExecutingMod
|
||||
name: GetExecutingMod
|
||||
nameWithType: ModLoader.GetExecutingMod
|
||||
fullName: TinyLife.Mods.ModLoader.GetExecutingMod
|
||||
- uid: System.Diagnostics.StackFrame[]
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.diagnostics.stackframe
|
||||
name: StackFrame[]
|
||||
nameWithType: StackFrame[]
|
||||
fullName: System.Diagnostics.StackFrame[]
|
||||
nameWithType.vb: StackFrame()
|
||||
fullName.vb: System.Diagnostics.StackFrame()
|
||||
name.vb: StackFrame()
|
||||
spec.csharp:
|
||||
- uid: System.Diagnostics.StackFrame
|
||||
name: StackFrame
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.diagnostics.stackframe
|
||||
- name: '['
|
||||
- name: ']'
|
||||
spec.vb:
|
||||
- uid: System.Diagnostics.StackFrame
|
||||
name: StackFrame
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.diagnostics.stackframe
|
||||
- name: (
|
||||
- name: )
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AgeGroup
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3348
|
||||
startLine: 3397
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3355
|
||||
startLine: 3404
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -91,7 +91,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3361
|
||||
startLine: 3410
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -119,7 +119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Adult
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3367
|
||||
startLine: 3416
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -29,8 +29,8 @@ items:
|
|||
summary: "\nA <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> type that allows displaying water when a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> is bathing using <xref href=\"TinyLife.Objects.Bathtub.HasWater\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Bathtub : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Bathtub Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Bathtub : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class Bathtub Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -38,7 +38,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -368,12 +367,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -495,7 +488,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3046,23 +3039,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3227,6 +3203,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -38,8 +38,8 @@ items:
|
|||
summary: "\nBreakable furniture is <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> that can be <xref href=\"TinyLife.Objects.BreakableFurniture.Broken\" data-throw-if-not-resolved=\"false\"></xref> and then repaired.\nAn object of this class is automatically returned in <xref href=\"TinyLife.Objects.FurnitureType.Construct%60%601(System.Int32%5b%5d%2cTinyLife.World.Map%2cMicrosoft.Xna.Framework.Vector2%2cSystem.Nullable%7bSystem.Guid%7d)\" data-throw-if-not-resolved=\"false\"></xref> if no <xref href=\"TinyLife.Objects.FurnitureType.TypeSettings.ConstructedType\" data-throw-if-not-resolved=\"false\"></xref> is set.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class BreakableFurniture : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class BreakableFurniture Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class BreakableFurniture : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class BreakableFurniture Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -49,7 +49,6 @@ items:
|
|||
- TinyLife.Objects.ScreenObject
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -488,13 +487,11 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Overrides Function GetPrice() As Single
|
||||
overridden: TinyLife.Objects.Furniture.GetPrice
|
||||
overload: TinyLife.Objects.BreakableFurniture.GetPrice*
|
||||
|
@ -740,12 +737,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -873,7 +864,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3372,23 +3363,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3650,6 +3624,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -28,8 +28,8 @@ items:
|
|||
summary: "\nA <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> item that additionally emits smoke particles automatically if there are any <xref href=\"TinyLife.Objects.Fireplace\" data-throw-if-not-resolved=\"false\"></xref> objects in the room below it that are currently enabled (<xref href=\"TinyLife.Objects.LightFurniture.IsDisabled\" data-throw-if-not-resolved=\"false\"></xref>).\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Chimney : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class Chimney Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class Chimney : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class Chimney Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -37,7 +37,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -301,12 +300,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -434,7 +427,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3168,23 +3161,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3338,6 +3314,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -56,15 +56,14 @@ items:
|
|||
content: >-
|
||||
[JsonConverter(typeof(StaticJsonConverter<Clothes>), new object[] { typeof(Clothes), "PrivateTypes" })]
|
||||
|
||||
public class Clothes : IPricedObject, IEmotionSource
|
||||
public class Clothes : IEmotionSource
|
||||
content.vb: >-
|
||||
<JsonConverter(GetType(StaticJsonConverter(Of Clothes)), New Object() { GetType(Clothes), "PrivateTypes" })>
|
||||
|
||||
Public Class Clothes Implements IPricedObject, IEmotionSource
|
||||
Public Class Clothes Implements IEmotionSource
|
||||
inheritance:
|
||||
- System.Object
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Emotions.IEmotionSource
|
||||
inheritedMembers:
|
||||
- System.Object.Equals(System.Object)
|
||||
|
@ -813,17 +812,13 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.Clothes.GetPrice*
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject.GetPrice
|
||||
- uid: TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)
|
||||
commentId: M:TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)
|
||||
id: GetDescription(TinyLife.Objects.Person)
|
||||
|
@ -915,19 +910,22 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 202
|
||||
startLine: 203
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nRegister the given clothes instance to the <xref href=\"TinyLife.Objects.Clothes.Types\" data-throw-if-not-resolved=\"false\"></xref> registry\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static void Register(Clothes clothes)
|
||||
content: public static Clothes Register(Clothes clothes)
|
||||
parameters:
|
||||
- id: clothes
|
||||
type: TinyLife.Objects.Clothes
|
||||
description: The clothes to register
|
||||
content.vb: Public Shared Sub Register(clothes As Clothes)
|
||||
return:
|
||||
type: TinyLife.Objects.Clothes
|
||||
description: The passed <code data-dev-comment-type="paramref" class="paramref">clothes</code>, for chaining.
|
||||
content.vb: Public Shared Function Register(clothes As Clothes) As Clothes
|
||||
overload: TinyLife.Objects.Clothes.Register*
|
||||
references:
|
||||
- uid: TinyLife.Objects.Person
|
||||
|
@ -983,12 +981,6 @@ references:
|
|||
nameWithType.vb: Object
|
||||
fullName.vb: Object
|
||||
name.vb: Object
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Emotions.IEmotionSource
|
||||
commentId: T:TinyLife.Emotions.IEmotionSource
|
||||
parent: TinyLife.Emotions
|
||||
|
@ -1255,23 +1247,6 @@ references:
|
|||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: TinyLife.Emotions
|
||||
commentId: N:TinyLife.Emotions
|
||||
name: TinyLife.Emotions
|
||||
|
@ -2510,22 +2485,6 @@ references:
|
|||
name: GetPrice
|
||||
nameWithType: Clothes.GetPrice
|
||||
fullName: TinyLife.Objects.Clothes.GetPrice
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
commentId: M:TinyLife.World.IPricedObject.GetPrice
|
||||
parent: TinyLife.World.IPricedObject
|
||||
name: GetPrice()
|
||||
nameWithType: IPricedObject.GetPrice()
|
||||
fullName: TinyLife.World.IPricedObject.GetPrice()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.Clothes.Description
|
||||
commentId: P:TinyLife.Objects.Clothes.Description
|
||||
name: Description
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ClothesIntention
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 464
|
||||
startLine: 466
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -46,8 +46,9 @@ items:
|
|||
|
||||
Public Enum ClothesIntention
|
||||
extensionMethods:
|
||||
- TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetDescription
|
||||
- TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetDescription(System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
- TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetRequiredMatchPercentage
|
||||
- TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.AgeGroup)
|
||||
- TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
attributes:
|
||||
- type: System.FlagsAttribute
|
||||
|
@ -71,7 +72,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: None
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 468
|
||||
startLine: 470
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -97,7 +98,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Everyday
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 469
|
||||
startLine: 471
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -123,7 +124,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Party
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 470
|
||||
startLine: 472
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -149,7 +150,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Formal
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 471
|
||||
startLine: 473
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -175,7 +176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Workout
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 472
|
||||
startLine: 474
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -201,7 +202,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Swimwear
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 473
|
||||
startLine: 475
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -227,7 +228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sleep
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 474
|
||||
startLine: 476
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -253,7 +254,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Summer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 475
|
||||
startLine: 477
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -279,7 +280,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Winter
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 476
|
||||
startLine: 478
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -305,7 +306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Work
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 477
|
||||
startLine: 479
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -331,7 +332,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Safety
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 478
|
||||
startLine: 480
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -365,26 +366,36 @@ references:
|
|||
- name: .
|
||||
- uid: TinyLife.Objects
|
||||
name: Objects
|
||||
- uid: TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetDescription
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetDescription(System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
definition: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
name: GetDescription(ClothesIntention)
|
||||
nameWithType: Extensions.GetDescription(ClothesIntention)
|
||||
fullName: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
definition: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription(ClothesIntention, AgeGroup?)
|
||||
nameWithType: Extensions.GetDescription(ClothesIntention, AgeGroup?)
|
||||
fullName: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention, TinyLife.Objects.AgeGroup?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.GetRequiredMatchPercentage
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetRequiredMatchPercentage(TinyLife.Objects.ClothesIntention)
|
||||
|
@ -407,6 +418,35 @@ references:
|
|||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.AgeGroup)
|
||||
commentId: M:TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
definition: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge(ClothesIntention, AgeGroup)
|
||||
nameWithType: Extensions.IsAvailableForAge(ClothesIntention, AgeGroup)
|
||||
fullName: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention, TinyLife.Objects.AgeGroup)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.ClothesIntention.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
|
@ -448,24 +488,34 @@ references:
|
|||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
name: GetDescription(ClothesIntention)
|
||||
nameWithType: Extensions.GetDescription(ClothesIntention)
|
||||
fullName: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription(ClothesIntention, AgeGroup?)
|
||||
nameWithType: Extensions.GetDescription(ClothesIntention, AgeGroup?)
|
||||
fullName: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention, TinyLife.Objects.AgeGroup?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention)
|
||||
- uid: TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})
|
||||
name: GetDescription
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
|
@ -492,6 +542,33 @@ references:
|
|||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
commentId: M:TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge(ClothesIntention, AgeGroup)
|
||||
nameWithType: Extensions.IsAvailableForAge(ClothesIntention, AgeGroup)
|
||||
fullName: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention, TinyLife.Objects.AgeGroup)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)
|
||||
name: IsAvailableForAge
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.AgeGroup
|
||||
name: AgeGroup
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<T>(T)
|
||||
|
|
|
@ -31,7 +31,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ClothesLayer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 405
|
||||
startLine: 407
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -73,7 +73,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Body
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 411
|
||||
startLine: 413
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -101,7 +101,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Eyes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 415
|
||||
startLine: 417
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -129,7 +129,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pants
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 419
|
||||
startLine: 421
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -157,7 +157,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Arms
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 423
|
||||
startLine: 425
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -185,7 +185,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shirt
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 427
|
||||
startLine: 429
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -213,7 +213,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Accessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 431
|
||||
startLine: 433
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -241,7 +241,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FacialHair
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 435
|
||||
startLine: 437
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -269,7 +269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hair
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 439
|
||||
startLine: 441
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -297,7 +297,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HeadAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 443
|
||||
startLine: 445
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -325,7 +325,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FaceAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 447
|
||||
startLine: 449
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -353,7 +353,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ArmAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 452
|
||||
startLine: 454
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -381,7 +381,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shoes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 456
|
||||
startLine: 458
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -29,8 +29,8 @@ items:
|
|||
summary: "\nA counter is a <xref href=\"TinyLife.Objects.CornerFurniture\" data-throw-if-not-resolved=\"false\"></xref> that can have four distinct rotations.\nA corner is only created for a counter if the two neighboring furnitures both face toward the same tile.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class CornerFurniture.Counter : CornerFurniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class CornerFurniture.Counter Inherits CornerFurniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class CornerFurniture.Counter : CornerFurniture, IGenericDataHolder'
|
||||
content.vb: Public Class CornerFurniture.Counter Inherits CornerFurniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -39,7 +39,6 @@ items:
|
|||
- TinyLife.Objects.CornerFurniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.CornerFurniture.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
- TinyLife.Objects.CornerFurniture.OnNeighborChanged(TinyLife.Objects.Furniture)
|
||||
|
@ -329,12 +328,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.CornerFurniture.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
commentId: M:TinyLife.Objects.CornerFurniture.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
parent: TinyLife.Objects.CornerFurniture
|
||||
|
@ -669,7 +662,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3184,23 +3177,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3354,6 +3330,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -32,8 +32,8 @@ items:
|
|||
summary: "\nA corner furniture is a piece of furniture that has an additional set of corner textures that it can display in various conditions.\nThe default <xref href=\"TinyLife.Objects.CornerFurniture\" data-throw-if-not-resolved=\"false\"></xref> class can be used for things like hedges, which only have a single vertical and horizontal rotation each.\nFor objects like counters which have four distinct rotations, the subclass <xref href=\"TinyLife.Objects.CornerFurniture.Counter\" data-throw-if-not-resolved=\"false\"></xref> can be used.\nFor objects with custom connection logic, you can override <xref href=\"TinyLife.Objects.CornerFurniture.ShouldConnectTo(TinyLife.Objects.Furniture)\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.CornerFurniture.GetCornerStatus(System.Collections.Generic.Dictionary%7bMLEM.Misc.Direction2%2cMLEM.Misc.Direction2%7d)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class CornerFurniture : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class CornerFurniture Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class CornerFurniture : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class CornerFurniture Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -43,7 +43,6 @@ items:
|
|||
- TinyLife.Objects.CornerFurniture.Counter
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -553,12 +552,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -680,7 +673,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3195,23 +3188,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3365,6 +3341,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeathReason
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3320
|
||||
startLine: 3369
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Starvation
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3326
|
||||
startLine: 3375
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -80,7 +80,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InexplicableReasons
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3331
|
||||
startLine: 3380
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Electrocution
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3336
|
||||
startLine: 3385
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -136,7 +136,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TooMuchProtein
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3340
|
||||
startLine: 3389
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -31,8 +31,8 @@ items:
|
|||
summary: "\nA fence is a furniture used by things like <xref href=\"TinyLife.Objects.FurnitureType.CountryFence\" data-throw-if-not-resolved=\"false\"></xref> that auto-connects similarly to <xref href=\"TinyLife.Objects.CornerFurniture\" data-throw-if-not-resolved=\"false\"></xref>, but by actually adding additional connection textures onto the regular object textures\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Fence : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Fence Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Fence : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class Fence Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -40,7 +40,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -429,12 +428,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -556,7 +549,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3071,23 +3064,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3241,6 +3217,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -30,8 +30,8 @@ items:
|
|||
summary: "\nA fireplace is a <xref href=\"TinyLife.Objects.LightFurniture\" data-throw-if-not-resolved=\"false\"></xref> that additionally displays a fire animation and plays a crackling fire sound.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Fireplace : LightFurniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class Fireplace Inherits LightFurniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class Fireplace : LightFurniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class Fireplace Inherits LightFurniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -40,7 +40,6 @@ items:
|
|||
- TinyLife.Objects.LightFurniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.LightFurniture.Lights
|
||||
|
@ -401,12 +400,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -633,7 +626,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3103,23 +3096,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3273,6 +3249,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -32,8 +32,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Food : FoodTypedItem, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class Food Inherits FoodTypedItem Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class Food : FoodTypedItem, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class Food Inherits FoodTypedItem Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -42,7 +42,6 @@ items:
|
|||
- TinyLife.Objects.FoodTypedItem
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.FoodTypedItem.FoodType
|
||||
|
@ -495,12 +494,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -668,7 +661,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3148,23 +3141,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3345,6 +3321,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -34,8 +34,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class FoodTypedItem : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class FoodTypedItem Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class FoodTypedItem : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class FoodTypedItem Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -45,7 +45,6 @@ items:
|
|||
- TinyLife.Objects.Food
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -515,12 +514,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -648,7 +641,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3305,23 +3298,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3556,6 +3532,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -31,8 +31,8 @@ items:
|
|||
summary: "\nA fridge is a <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> that can contain a set of <xref href=\"TinyLife.Objects.Fridge.Items\" data-throw-if-not-resolved=\"false\"></xref> that a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> can interact with.\nFor any <xref href=\"TinyLife.Objects.Fridge.Items\" data-throw-if-not-resolved=\"false\"></xref> that are food, their <xref href=\"TinyLife.Objects.FoodTypedItem.ExpirationTime\" data-throw-if-not-resolved=\"false\"></xref> is increased while in a fridge.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Fridge : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class Fridge Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class Fridge : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class Fridge Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -40,7 +40,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -413,12 +412,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -546,7 +539,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3264,23 +3257,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3552,6 +3528,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -97,8 +97,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Furniture : MapObject, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Furniture Inherits MapObject Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Furniture : MapObject, IGenericDataHolder'
|
||||
content.vb: Public Class Furniture Inherits MapObject Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -121,7 +121,6 @@ items:
|
|||
- TinyLife.Objects.UnfinishedWoodwork
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
|
@ -296,7 +295,7 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nAn event that is fired when this furniture gets dirty, meaning its <xref href=\"TinyLife.Objects.Furniture.Dirty\" data-throw-if-not-resolved=\"false\"></xref> value is set to true.\nThis event can be subscribed to using <xref href=\"TinyLife.Objects.MapObject.OnEventsAttachable\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
summary: "\nAn event that is fired when this furniture's <xref href=\"TinyLife.Objects.Furniture.Dirty\" data-throw-if-not-resolved=\"false\"></xref> value is changed.\nThis event can be subscribed to using <xref href=\"TinyLife.Objects.MapObject.OnEventsAttachable\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public event Action OnDirty
|
||||
|
@ -847,7 +846,7 @@ items:
|
|||
content.vb: Public ReadOnly Property CanBeDirty As Boolean
|
||||
overload: TinyLife.Objects.Furniture.CanBeDirty*
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
id: Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
langs:
|
||||
|
@ -856,7 +855,7 @@ items:
|
|||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
fullName: TinyLife.Objects.Furniture.Dirty
|
||||
type: Field
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Furniture.cs
|
||||
|
@ -864,31 +863,19 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dirty
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 159
|
||||
startLine: 158
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nWhether this object is currently dirty.\nIf <xref href=\"TinyLife.Objects.Furniture.CanBeDirty\" data-throw-if-not-resolved=\"false\"></xref> is false, this field is usually unused.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[DataMember(EmitDefaultValue = false)]
|
||||
|
||||
public bool Dirty
|
||||
content: public bool Dirty { get; set; }
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: >-
|
||||
<DataMember(EmitDefaultValue:=False)>
|
||||
|
||||
Public Dirty As Boolean
|
||||
attributes:
|
||||
- type: System.Runtime.Serialization.DataMemberAttribute
|
||||
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
|
||||
arguments: []
|
||||
namedArguments:
|
||||
- name: EmitDefaultValue
|
||||
type: System.Boolean
|
||||
value: false
|
||||
content.vb: Public Property Dirty As Boolean
|
||||
overload: TinyLife.Objects.Furniture.Dirty*
|
||||
- uid: TinyLife.Objects.Furniture.CustomPrice
|
||||
commentId: F:TinyLife.Objects.Furniture.CustomPrice
|
||||
id: CustomPrice
|
||||
|
@ -907,7 +894,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CustomPrice
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 165
|
||||
startLine: 170
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -950,7 +937,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Creator
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 170
|
||||
startLine: 175
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -981,7 +968,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AttachedWall
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 175
|
||||
startLine: 180
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1012,7 +999,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HideFromDraw
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 179
|
||||
startLine: 184
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1043,7 +1030,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VisualRotation
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 206
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1074,7 +1061,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentObjectSpotId
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 210
|
||||
startLine: 215
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1119,7 +1106,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentFurnitureId
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 215
|
||||
startLine: 220
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1164,7 +1151,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 230
|
||||
startLine: 237
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1211,7 +1198,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Draw
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 241
|
||||
startLine: 248
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1259,7 +1246,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 257
|
||||
startLine: 264
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1291,7 +1278,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Intersects
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 284
|
||||
startLine: 291
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1327,7 +1314,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCategories
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 289
|
||||
startLine: 296
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1363,7 +1350,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnAdded
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 294
|
||||
startLine: 301
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1392,7 +1379,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnRemoved
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 301
|
||||
startLine: 308
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1421,7 +1408,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAiPriority
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 309
|
||||
startLine: 316
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1460,7 +1447,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecuteAction
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 325
|
||||
startLine: 332
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1508,7 +1495,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnActionCompleted
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 332
|
||||
startLine: 339
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1550,7 +1537,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ActionUpdate
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 342
|
||||
startLine: 349
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1598,7 +1585,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpotInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 362
|
||||
startLine: 369
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1637,7 +1624,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHoverInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 368
|
||||
startLine: 375
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1670,7 +1657,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEfficiencyModifier
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 397
|
||||
startLine: 404
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1721,7 +1708,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRestoreNeedModifier
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 405
|
||||
startLine: 412
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1769,7 +1756,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsFreeSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 413
|
||||
startLine: 420
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1805,7 +1792,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ResetToStatic
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 419
|
||||
startLine: 426
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1844,7 +1831,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPositionChanged
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 425
|
||||
startLine: 432
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1877,7 +1864,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Draw
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 447
|
||||
startLine: 454
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1948,21 +1935,17 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 455
|
||||
startLine: 462
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Overridable Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.Furniture.GetPrice*
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject.GetPrice
|
||||
- uid: TinyLife.Objects.Furniture.GetDescription(System.Collections.Generic.List{System.String},System.Boolean)
|
||||
commentId: M:TinyLife.Objects.Furniture.GetDescription(System.Collections.Generic.List{System.String},System.Boolean)
|
||||
id: GetDescription(System.Collections.Generic.List{System.String},System.Boolean)
|
||||
|
@ -1981,7 +1964,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDescription
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 468
|
||||
startLine: 475
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2019,7 +2002,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDecorativeRating
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 501
|
||||
startLine: 508
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2054,7 +2037,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDirty
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 512
|
||||
startLine: 519
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2089,7 +2072,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetCreator
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 538
|
||||
startLine: 544
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2127,7 +2110,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPlacedInBuildMode
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 552
|
||||
startLine: 558
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2165,7 +2148,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnNeighborChanged
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 565
|
||||
startLine: 571
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2197,7 +2180,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawUi
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 576
|
||||
startLine: 582
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2244,7 +2227,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetOccupants
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 590
|
||||
startLine: 596
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2285,7 +2268,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpots
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 603
|
||||
startLine: 609
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2323,7 +2306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 624
|
||||
startLine: 630
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2361,7 +2344,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetActionSpotInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 637
|
||||
startLine: 643
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2402,7 +2385,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeObjectSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 649
|
||||
startLine: 655
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2440,7 +2423,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetParent
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 663
|
||||
startLine: 669
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2475,7 +2458,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UnlinkParentsAndChildren
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 677
|
||||
startLine: 683
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2503,7 +2486,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RemoveAndUnlink
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 688
|
||||
startLine: 694
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2531,7 +2514,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetChildren
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 698
|
||||
startLine: 704
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2567,7 +2550,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 712
|
||||
startLine: 718
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2620,7 +2603,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 729
|
||||
startLine: 735
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2661,7 +2644,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 745
|
||||
startLine: 751
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2712,7 +2695,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 759
|
||||
startLine: 765
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2750,7 +2733,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RemoveChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 770
|
||||
startLine: 776
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2785,7 +2768,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NotifyNeighbors
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 783
|
||||
startLine: 789
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2813,7 +2796,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetNewId
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 796
|
||||
startLine: 802
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2910,12 +2893,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
commentId: F:TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -3930,23 +3907,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -4446,7 +4406,7 @@ references:
|
|||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -4865,6 +4825,11 @@ references:
|
|||
name: CanBeDirty
|
||||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty*
|
||||
commentId: Overload:TinyLife.Objects.Furniture.Dirty
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
fullName: TinyLife.Objects.Furniture.Dirty
|
||||
- uid: System.Nullable{System.Single}
|
||||
commentId: T:System.Nullable{System.Single}
|
||||
parent: System
|
||||
|
@ -4910,6 +4875,23 @@ references:
|
|||
name: AttachedWall
|
||||
nameWithType: Furniture.AttachedWall
|
||||
fullName: TinyLife.Objects.Furniture.AttachedWall
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: TinyLife.Objects.Furniture.HideFromDraw*
|
||||
commentId: Overload:TinyLife.Objects.Furniture.HideFromDraw
|
||||
name: HideFromDraw
|
||||
|
@ -6103,22 +6085,6 @@ references:
|
|||
name: GetPrice
|
||||
nameWithType: Furniture.GetPrice
|
||||
fullName: TinyLife.Objects.Furniture.GetPrice
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
commentId: M:TinyLife.World.IPricedObject.GetPrice
|
||||
parent: TinyLife.World.IPricedObject
|
||||
name: GetPrice()
|
||||
nameWithType: IPricedObject.GetPrice()
|
||||
fullName: TinyLife.World.IPricedObject.GetPrice()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.FurnitureType.TypeSettings.ElectricityRating
|
||||
commentId: F:TinyLife.Objects.FurnitureType.TypeSettings.ElectricityRating
|
||||
name: ElectricityRating
|
||||
|
|
|
@ -2366,7 +2366,7 @@ references:
|
|||
- uid: TinyLife.Objects.LightFurniture.Settings
|
||||
name: Settings
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
|
|
@ -88,6 +88,7 @@ items:
|
|||
- TinyLife.Objects.FurnitureType.ModernComputer
|
||||
- TinyLife.Objects.FurnitureType.ModernCrib
|
||||
- TinyLife.Objects.FurnitureType.ModernFridge
|
||||
- TinyLife.Objects.FurnitureType.ModernModularCurtains
|
||||
- TinyLife.Objects.FurnitureType.ModernSingleBed
|
||||
- TinyLife.Objects.FurnitureType.ModernSink
|
||||
- TinyLife.Objects.FurnitureType.ModernStove
|
||||
|
@ -224,17 +225,16 @@ items:
|
|||
content: >-
|
||||
[JsonConverter(typeof(StaticJsonConverter<FurnitureType>), new object[] { typeof(FurnitureType), "PrivateTypes" })]
|
||||
|
||||
public class FurnitureType : GenericDataHolder, IGenericDataHolder, IPricedObject, IEmotionSource
|
||||
public class FurnitureType : GenericDataHolder, IGenericDataHolder, IEmotionSource
|
||||
content.vb: >-
|
||||
<JsonConverter(GetType(StaticJsonConverter(Of FurnitureType)), New Object() { GetType(FurnitureType), "PrivateTypes" })>
|
||||
|
||||
Public Class FurnitureType Inherits GenericDataHolder Implements IGenericDataHolder, IPricedObject, IEmotionSource
|
||||
Public Class FurnitureType Inherits GenericDataHolder Implements IGenericDataHolder, IEmotionSource
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Misc.GenericDataHolder
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Emotions.IEmotionSource
|
||||
inheritedMembers:
|
||||
- MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
|
||||
|
@ -906,17 +906,13 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.FurnitureType.GetPrice*
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject.GetPrice
|
||||
- uid: TinyLife.Objects.FurnitureType.HasCategory(TinyLife.Objects.ObjectCategory)
|
||||
commentId: M:TinyLife.Objects.FurnitureType.HasCategory(TinyLife.Objects.ObjectCategory)
|
||||
id: HasCategory(TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2255,6 +2251,33 @@ items:
|
|||
return:
|
||||
type: TinyLife.Objects.FurnitureType[]
|
||||
content.vb: Public Shared ReadOnly Cattails As FurnitureType()
|
||||
- uid: TinyLife.Objects.FurnitureType.ModernModularCurtains
|
||||
commentId: F:TinyLife.Objects.FurnitureType.ModernModularCurtains
|
||||
id: ModernModularCurtains
|
||||
parent: TinyLife.Objects.FurnitureType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ModernModularCurtains
|
||||
nameWithType: FurnitureType.ModernModularCurtains
|
||||
fullName: TinyLife.Objects.FurnitureType.ModernModularCurtains
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/FurnitureType.Decor.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ModernModularCurtains
|
||||
path: ../TinyLife/Objects/FurnitureType.Decor.cs
|
||||
startLine: 239
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
syntax:
|
||||
content: public static readonly FurnitureType[] ModernModularCurtains
|
||||
return:
|
||||
type: TinyLife.Objects.FurnitureType[]
|
||||
content.vb: Public Shared ReadOnly ModernModularCurtains As FurnitureType()
|
||||
- uid: TinyLife.Objects.FurnitureType.SimpleDesk
|
||||
commentId: F:TinyLife.Objects.FurnitureType.SimpleDesk
|
||||
id: SimpleDesk
|
||||
|
@ -5919,12 +5942,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Emotions.IEmotionSource
|
||||
commentId: T:TinyLife.Emotions.IEmotionSource
|
||||
parent: TinyLife.Emotions
|
||||
|
@ -6335,23 +6352,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: TinyLife.Emotions
|
||||
commentId: N:TinyLife.Emotions
|
||||
name: TinyLife.Emotions
|
||||
|
@ -6741,7 +6741,7 @@ references:
|
|||
nameWithType: FurnitureType.Textures
|
||||
fullName: TinyLife.Objects.FurnitureType.Textures
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -7273,6 +7273,23 @@ references:
|
|||
- uid: Microsoft.Xna.Framework.Graphics
|
||||
name: Graphics
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
@ -7891,22 +7908,6 @@ references:
|
|||
name: GetPrice
|
||||
nameWithType: FurnitureType.GetPrice
|
||||
fullName: TinyLife.Objects.FurnitureType.GetPrice
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
commentId: M:TinyLife.World.IPricedObject.GetPrice
|
||||
parent: TinyLife.World.IPricedObject
|
||||
name: GetPrice()
|
||||
nameWithType: IPricedObject.GetPrice()
|
||||
fullName: TinyLife.World.IPricedObject.GetPrice()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.FurnitureType.Settings
|
||||
commentId: F:TinyLife.Objects.FurnitureType.Settings
|
||||
name: Settings
|
||||
|
|
|
@ -31,8 +31,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Gravestone : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Gravestone Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Gravestone : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class Gravestone Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -40,7 +40,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -392,12 +391,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -519,7 +512,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3169,23 +3162,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3386,6 +3362,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -25,7 +25,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LifeSpan
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3375
|
||||
startLine: 3424
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -56,7 +56,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryShort
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3378
|
||||
startLine: 3427
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -82,7 +82,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Short
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3379
|
||||
startLine: 3428
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Normal
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3380
|
||||
startLine: 3429
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -134,7 +134,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Long
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3381
|
||||
startLine: 3430
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -160,7 +160,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryLong
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3382
|
||||
startLine: 3431
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -186,7 +186,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Infinite
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3383
|
||||
startLine: 3432
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -36,8 +36,8 @@ items:
|
|||
summary: "\nLight furniture is a furniture that additionally spawns and handles a set of <xref href=\"TinyLife.Objects.Light\" data-throw-if-not-resolved=\"false\"></xref> instances.\nTo use this class effectively, set <xref href=\"TinyLife.Objects.FurnitureType.TypeSettings.LightSettings\" data-throw-if-not-resolved=\"false\"></xref> to determine the lights that should be spawned from the furniture.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class LightFurniture : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class LightFurniture Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class LightFurniture : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class LightFurniture Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -47,7 +47,6 @@ items:
|
|||
- TinyLife.Objects.Fireplace
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -565,12 +564,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -698,7 +691,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3345,23 +3338,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3577,6 +3553,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -3419,7 +3419,7 @@ references:
|
|||
nameWithType: Action.FullyInProgress
|
||||
fullName: TinyLife.Actions.Action.FullyInProgress
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
|
|
@ -29,8 +29,8 @@ items:
|
|||
summary: "\nA furniture class for <xref href=\"TinyLife.Objects.FurnitureType.Newspaper\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Newspaper : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Newspaper Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Newspaper : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class Newspaper Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -38,7 +38,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -313,12 +312,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -440,7 +433,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3113,23 +3106,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
|
|
@ -25,7 +25,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Outfit
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 285
|
||||
startLine: 287
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -74,7 +74,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Clothes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 293
|
||||
startLine: 295
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -113,7 +113,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Intentions
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 299
|
||||
startLine: 301
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -152,7 +152,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 305
|
||||
startLine: 307
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -187,7 +187,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetIntentionPercentage
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 315
|
||||
startLine: 317
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -222,7 +222,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EnsureIntentionsMatch
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 333
|
||||
startLine: 335
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -257,7 +257,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetRandomClothesItem
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 354
|
||||
startLine: 356
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -28,8 +28,8 @@ items:
|
|||
summary: "\nA class for a wall-hung object like <xref href=\"TinyLife.Objects.FurnitureType.LgbtFlags\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.FurnitureType.WorkoutPosters\" data-throw-if-not-resolved=\"false\"></xref>.\nObjects that use this class have a default "border" texture that requires all rotations to be present as usual, and an overlay texture that automatically gets rotated and mirrored.\nTo set a default border texture that is different from the overlay, <xref href=\"TinyLife.Objects.FurnitureType.TypeSettings.TextureName\" data-throw-if-not-resolved=\"false\"></xref> should be set explicitly.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class OverlayWallHanging : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class OverlayWallHanging Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class OverlayWallHanging : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class OverlayWallHanging Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -37,7 +37,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -332,12 +331,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -459,7 +452,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3010,23 +3003,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3180,6 +3156,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -35,8 +35,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class Painting : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class Painting Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class Painting : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class Painting Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -44,7 +44,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -404,13 +403,11 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Overrides Function GetPrice() As Single
|
||||
overridden: TinyLife.Objects.Furniture.GetPrice
|
||||
overload: TinyLife.Objects.Painting.GetPrice*
|
||||
|
@ -588,12 +585,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -715,7 +706,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3122,23 +3113,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3370,6 +3344,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ActionUpdateDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3225
|
||||
startLine: 3274
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EfficiencyModifierDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3210
|
||||
startLine: 3259
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EmotionModifiersChangedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3235
|
||||
startLine: 3284
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassiveActionPriorityDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3220
|
||||
startLine: 3269
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RelationshipChangeDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3240
|
||||
startLine: 3289
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RestoreNeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3230
|
||||
startLine: 3279
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkSpeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3215
|
||||
startLine: 3264
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -59,7 +59,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StartAutomatically
|
||||
path: ../TinyLife/Objects/PersonAi.cs
|
||||
startLine: 119
|
||||
startLine: 132
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pose
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3266
|
||||
startLine: 3315
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -60,7 +60,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Standing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3271
|
||||
startLine: 3320
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -88,7 +88,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Walking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3275
|
||||
startLine: 3324
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -116,7 +116,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3279
|
||||
startLine: 3328
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -144,7 +144,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Laying
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3284
|
||||
startLine: 3333
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -172,7 +172,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3289
|
||||
startLine: 3338
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -200,7 +200,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingStanding
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3293
|
||||
startLine: 3342
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -228,7 +228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3297
|
||||
startLine: 3346
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -256,7 +256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3301
|
||||
startLine: 3350
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -284,7 +284,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Running
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3305
|
||||
startLine: 3354
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -312,7 +312,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StandingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3309
|
||||
startLine: 3358
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -340,7 +340,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3313
|
||||
startLine: 3362
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PregnancyAbility
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3437
|
||||
startLine: 3486
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -51,7 +51,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neither
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3442
|
||||
startLine: 3491
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -79,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetOthersPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3446
|
||||
startLine: 3495
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -107,7 +107,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3450
|
||||
startLine: 3499
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -33,8 +33,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class ScreenObject : BreakableFurniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class ScreenObject Inherits BreakableFurniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class ScreenObject : BreakableFurniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class ScreenObject Inherits BreakableFurniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -43,7 +43,6 @@ items:
|
|||
- TinyLife.Objects.BreakableFurniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.BreakableFurniture.OnWearDown
|
||||
|
@ -500,12 +499,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -963,7 +956,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3279,23 +3272,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3726,6 +3702,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -35,7 +35,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SpeakStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3393
|
||||
startLine: 3442
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -74,7 +74,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Affirmative
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3397
|
||||
startLine: 3446
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -100,7 +100,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Angry
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3398
|
||||
startLine: 3447
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -126,7 +126,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Annoyed
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3399
|
||||
startLine: 3448
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -152,7 +152,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Bored
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3400
|
||||
startLine: 3449
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -178,7 +178,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Childish
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3401
|
||||
startLine: 3450
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -204,7 +204,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confident
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3402
|
||||
startLine: 3451
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -230,7 +230,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confused
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3403
|
||||
startLine: 3452
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -256,7 +256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Disagreeing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3404
|
||||
startLine: 3453
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -282,7 +282,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Excited
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3405
|
||||
startLine: 3454
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -308,7 +308,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Happy
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3406
|
||||
startLine: 3455
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -334,7 +334,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neutral
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3407
|
||||
startLine: 3456
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -360,7 +360,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Questioning
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3408
|
||||
startLine: 3457
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -386,7 +386,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sad
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3409
|
||||
startLine: 3458
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -412,7 +412,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Scared
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3410
|
||||
startLine: 3459
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -438,7 +438,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shocked
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3411
|
||||
startLine: 3460
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -464,7 +464,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Thinking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3412
|
||||
startLine: 3461
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -29,8 +29,8 @@ items:
|
|||
summary: "\nA furniture is an instance of a <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> which is placed in the world, or in a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref>'s hand.\nTo register a custom furniture, use <xref href=\"TinyLife.Objects.FurnitureType.Register(TinyLife.Objects.FurnitureType.TypeSettings)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class TrashBag : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class TrashBag Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class TrashBag : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class TrashBag Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -38,7 +38,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -317,12 +316,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -444,7 +437,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3156,23 +3149,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3422,6 +3398,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -33,8 +33,8 @@ items:
|
|||
summary: "\nA class that can be used for objects like <xref href=\"TinyLife.Objects.FurnitureType.ParkTrashCan\" data-throw-if-not-resolved=\"false\"></xref>, allowing a trash can to contain a set of <xref href=\"TinyLife.Objects.TrashCan.Content\" data-throw-if-not-resolved=\"false\"></xref> that can then be rummaged for using <xref href=\"TinyLife.Actions.ActionType.Rummage\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class TrashCan : Furniture, IGenericDataHolder, IPricedObject, IUpdatingObject'
|
||||
content.vb: Public Class TrashCan Inherits Furniture Implements IGenericDataHolder, IPricedObject, IUpdatingObject
|
||||
content: 'public class TrashCan : Furniture, IGenericDataHolder, IUpdatingObject'
|
||||
content.vb: Public Class TrashCan Inherits Furniture Implements IGenericDataHolder, IUpdatingObject
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -42,7 +42,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
- TinyLife.Objects.IUpdatingObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
|
@ -519,12 +518,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.IUpdatingObject
|
||||
commentId: T:TinyLife.Objects.IUpdatingObject
|
||||
parent: TinyLife.Objects
|
||||
|
@ -652,7 +645,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3167,23 +3160,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3455,6 +3431,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -32,8 +32,8 @@ items:
|
|||
summary: "\nAn unfinished woodwork is the item that is placed and worked on when using a <xref href=\"TinyLife.Objects.FurnitureType.WoodworkingTable\" data-throw-if-not-resolved=\"false\"></xref>\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class UnfinishedWoodwork : Furniture, IGenericDataHolder, IPricedObject'
|
||||
content.vb: Public Class UnfinishedWoodwork Inherits Furniture Implements IGenericDataHolder, IPricedObject
|
||||
content: 'public class UnfinishedWoodwork : Furniture, IGenericDataHolder'
|
||||
content.vb: Public Class UnfinishedWoodwork Inherits Furniture Implements IGenericDataHolder
|
||||
inheritance:
|
||||
- System.Object
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -41,7 +41,6 @@ items:
|
|||
- TinyLife.Objects.Furniture
|
||||
implements:
|
||||
- MLEM.Misc.IGenericDataHolder
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- TinyLife.Objects.Furniture.Random
|
||||
- TinyLife.Objects.Furniture.OnGetDescription
|
||||
|
@ -474,12 +473,6 @@ references:
|
|||
name: IGenericDataHolder
|
||||
nameWithType: IGenericDataHolder
|
||||
fullName: MLEM.Misc.IGenericDataHolder
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: TinyLife.Objects.Furniture.Random
|
||||
commentId: F:TinyLife.Objects.Furniture.Random
|
||||
parent: TinyLife.Objects.Furniture
|
||||
|
@ -601,7 +594,7 @@ references:
|
|||
nameWithType: Furniture.CanBeDirty
|
||||
fullName: TinyLife.Objects.Furniture.CanBeDirty
|
||||
- uid: TinyLife.Objects.Furniture.Dirty
|
||||
commentId: F:TinyLife.Objects.Furniture.Dirty
|
||||
commentId: P:TinyLife.Objects.Furniture.Dirty
|
||||
parent: TinyLife.Objects.Furniture
|
||||
name: Dirty
|
||||
nameWithType: Furniture.Dirty
|
||||
|
@ -3136,23 +3129,6 @@ references:
|
|||
- uid: MLEM.Misc
|
||||
name: Misc
|
||||
isExternal: true
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
|
||||
isExternal: true
|
||||
|
@ -3347,6 +3323,23 @@ references:
|
|||
name: Vector2
|
||||
nameWithType: Vector2
|
||||
fullName: Microsoft.Xna.Framework.Vector2
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VoiceStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3421
|
||||
startLine: 3470
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Low
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3424
|
||||
startLine: 3473
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -78,7 +78,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: High
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3425
|
||||
startLine: 3474
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -104,7 +104,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3426
|
||||
startLine: 3475
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -130,7 +130,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3428
|
||||
startLine: 3477
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WornClothes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 212
|
||||
startLine: 214
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -37,15 +37,13 @@ items:
|
|||
content: >-
|
||||
[DataContract]
|
||||
|
||||
public class WornClothes : IPricedObject
|
||||
public class WornClothes
|
||||
content.vb: >-
|
||||
<DataContract>
|
||||
|
||||
Public Class WornClothes Implements IPricedObject
|
||||
Public Class WornClothes
|
||||
inheritance:
|
||||
- System.Object
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject
|
||||
inheritedMembers:
|
||||
- System.Object.Equals(System.Object)
|
||||
- System.Object.Equals(System.Object,System.Object)
|
||||
|
@ -78,7 +76,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Type
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 219
|
||||
startLine: 221
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -117,7 +115,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Colors
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 226
|
||||
startLine: 228
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -156,7 +154,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromStorage
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 231
|
||||
startLine: 233
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -195,7 +193,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CustomPrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 237
|
||||
startLine: 239
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -238,7 +236,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 244
|
||||
startLine: 246
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -276,7 +274,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetColor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 254
|
||||
startLine: 256
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -314,7 +312,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 262
|
||||
startLine: 264
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -345,21 +343,17 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 275
|
||||
startLine: 277
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the price that this object can be bought or sold for.\nNote that, like in the case of the <xref href=\"TinyLife.Objects.Painting\" data-throw-if-not-resolved=\"false\"></xref>, the returned price isn't necessarily the full price that the object can be sold for. Instead, the price returned here should be the price that this object has when bought or sold from the <xref href=\"TinyLife.Tools.FurnitureTool\" data-throw-if-not-resolved=\"false\"></xref> or similar.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: The object's price
|
||||
content.vb: Public Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.WornClothes.GetPrice*
|
||||
implements:
|
||||
- TinyLife.World.IPricedObject.GetPrice
|
||||
references:
|
||||
- uid: TinyLife.Objects.Clothes
|
||||
commentId: T:TinyLife.Objects.Clothes
|
||||
|
@ -400,12 +394,6 @@ references:
|
|||
nameWithType.vb: Object
|
||||
fullName.vb: Object
|
||||
name.vb: Object
|
||||
- uid: TinyLife.World.IPricedObject
|
||||
commentId: T:TinyLife.World.IPricedObject
|
||||
parent: TinyLife.World
|
||||
name: IPricedObject
|
||||
nameWithType: IPricedObject
|
||||
fullName: TinyLife.World.IPricedObject
|
||||
- uid: System.Object.Equals(System.Object)
|
||||
commentId: M:System.Object.Equals(System.Object)
|
||||
parent: System.Object
|
||||
|
@ -666,23 +654,6 @@ references:
|
|||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: TinyLife.World
|
||||
commentId: N:TinyLife.World
|
||||
name: TinyLife.World
|
||||
nameWithType: TinyLife.World
|
||||
fullName: TinyLife.World
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.World
|
||||
name: World
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<T>(T)
|
||||
|
@ -948,22 +919,6 @@ references:
|
|||
name: GetPrice
|
||||
nameWithType: WornClothes.GetPrice
|
||||
fullName: TinyLife.Objects.WornClothes.GetPrice
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
commentId: M:TinyLife.World.IPricedObject.GetPrice
|
||||
parent: TinyLife.World.IPricedObject
|
||||
name: GetPrice()
|
||||
nameWithType: IPricedObject.GetPrice()
|
||||
fullName: TinyLife.World.IPricedObject.GetPrice()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.World.IPricedObject.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: System.Single
|
||||
commentId: T:System.Single
|
||||
parent: System
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TypeCategory
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 299
|
||||
startLine: 298
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -51,7 +51,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Major
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 304
|
||||
startLine: 303
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -79,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Minor
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 308
|
||||
startLine: 307
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -107,7 +107,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hidden
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 313
|
||||
startLine: 312
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue