ark-mod / ArkSavegameToolkitNet

Library for reading ARK Survival Evolved savegame files using C#.
MIT License
21 stars 27 forks source link

Added read functionality for tamed creatures in cryopod stasis. #14

Closed miragedmuk closed 4 years ago

miragedmuk commented 4 years ago

Added reading of cryo pod tamed creatures. ArkSavegame.LoadEverything() Added "IsCryo" property to IGameObject, GameObject, TamedCreature to eaily identify themL

//Example code to get all cryopod creature entries var cryoTamed = gd.TamedCreatures.Where(c => c.IsCryo);

miragedmuk commented 4 years ago

I believe I have corrected the concerns raised by brcaswell and will do some further testing myself before adding a new pull request.