├── .github ├── FUNDING.yml └── workflows │ └── ci-mac.yaml ├── .gitignore ├── .gitmodules ├── Assets ├── Creatures.ai ├── Food.ai ├── Icon.psd └── Screenshot.png ├── CODE_OF_CONDUCT.md ├── Creatures-Evolution.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Creatures Evolution.xcscheme ├── Creatures-Evolution ├── About Window │ ├── AboutWindowController.swift │ └── Base.lproj │ │ └── AboutWindowController.xib ├── Application │ ├── ApplicationDelegate.swift │ ├── Base.lproj │ │ └── MainMenu.xib │ └── Preferences.swift ├── Bridging-Header.h ├── Credits │ ├── Base.lproj │ │ ├── CreditViewController.xib │ │ └── CreditsWindowController.xib │ ├── Credit.swift │ ├── CreditViewController.swift │ └── CreditsWindowController.swift ├── Details │ ├── Base.lproj │ │ ├── CreatureDetailViewController.xib │ │ ├── EditNameWindowController.xib │ │ └── FoodDetailViewController.xib │ ├── CreatureDetailViewController.swift │ ├── DetailViewController.swift │ ├── EditNameWindowController.swift │ └── FoodDetailViewController.swift ├── Effects │ ├── Fly.sks │ ├── Heart.sks │ ├── Rot.sks │ └── Skull.sks ├── Event Log │ ├── Event.swift │ ├── EventLog.swift │ ├── EventLogWindowController.swift │ └── EventLogWindowController.xib ├── Extensions │ ├── Bundle.swift │ ├── NSAppearance.swift │ ├── NSException.h │ ├── NSException.m │ ├── NSPoint.swift │ ├── NSView.swift │ └── SKScene.swift ├── Gene Selection Window │ ├── Base.lproj │ │ └── GeneSelectionWindowController.xib │ └── GeneSelectionWindowController.swift ├── Helpers │ ├── ClampingDouble.swift │ ├── Constants.swift │ ├── Destination.swift │ ├── DistanceHelper.swift │ ├── EvolutionHelper.swift │ ├── GeneInfo.swift │ ├── NameGenerator.swift │ ├── PredationHelper.swift │ ├── ReproductionHelper.swift │ └── Weak.swift ├── Main Window │ ├── Base.lproj │ │ └── MainWindowController.xib │ └── MainWindowController.swift ├── Organisms │ ├── Creature.swift │ ├── Food │ │ ├── Food.swift │ │ ├── Manure.swift │ │ ├── Meat.swift │ │ └── Plant.swift │ └── Genes │ │ ├── Abilities │ │ ├── Abnegation.swift │ │ ├── Attack.swift │ │ ├── Defense.swift │ │ ├── Digestion.swift │ │ ├── Excretion.swift │ │ └── Speed.swift │ │ ├── Diet │ │ ├── Cannibal.swift │ │ ├── Herbivore.swift │ │ ├── Predator.swift │ │ ├── Scavenger.swift │ │ └── Vampire.swift │ │ ├── DietGene.swift │ │ ├── DoubleValueGene.swift │ │ ├── Gene.swift │ │ ├── IntValueGene.swift │ │ ├── Reproduction │ │ ├── Mitosis.swift │ │ └── Sex.swift │ │ ├── Senses │ │ ├── ManureSense.swift │ │ ├── MeatSense.swift │ │ ├── PlantSense.swift │ │ ├── PredatorSense.swift │ │ ├── PreySense.swift │ │ ├── SexSense.swift │ │ └── VampireSense.swift │ │ └── ValueGene.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Basic.imageset │ │ │ ├── Basic.svg │ │ │ └── Contents.json │ │ ├── Beach.imageset │ │ │ ├── Beach.jpg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Cross.imageset │ │ │ ├── Contents.json │ │ │ └── Cross.svg │ │ ├── Desert.imageset │ │ │ ├── Contents.json │ │ │ └── Desert.jpg │ │ ├── Fly.imageset │ │ │ ├── Contents.json │ │ │ └── Fly.svg │ │ ├── Forrest.imageset │ │ │ ├── Contents.json │ │ │ └── Forrest.jpg │ │ ├── Heart.imageset │ │ │ ├── Contents.json │ │ │ └── Heart.svg │ │ ├── Herbivore.imageset │ │ │ ├── Contents.json │ │ │ └── Herbivore.svg │ │ ├── Manure.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Meat-1.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Meat-2.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Meat-3.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Plant-1.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Plant-2.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Plant-3.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Plant-4.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Plant-5.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Predator.imageset │ │ │ ├── Contents.json │ │ │ └── Predator.svg │ │ ├── Sand.imageset │ │ │ ├── Contents.json │ │ │ └── Sand.jpg │ │ ├── Scavenger.imageset │ │ │ ├── Contents.json │ │ │ └── Scavenger.svg │ │ ├── Sex-F.imageset │ │ │ ├── Contents.json │ │ │ └── Sex-F.svg │ │ ├── Sex-M.imageset │ │ │ ├── Contents.json │ │ │ └── Sex-M.svg │ │ ├── Sex-MF.imageset │ │ │ ├── Contents.json │ │ │ └── Sex-MF.svg │ │ ├── Skull.imageset │ │ │ ├── Contents.json │ │ │ └── Skull.svg │ │ ├── Spark.imageset │ │ │ ├── Contents.json │ │ │ └── Spark.png │ │ ├── Stones.imageset │ │ │ ├── Contents.json │ │ │ └── Stones.jpg │ │ ├── SwordsTemplate.imageset │ │ │ ├── Contents.json │ │ │ └── SwordsTemplate.svg │ │ ├── Vampire.imageset │ │ │ ├── Contents.json │ │ │ └── Vampire.svg │ │ └── Wood.imageset │ │ │ ├── Contents.json │ │ │ └── Wood.jpg │ ├── Creatures-Evolution.entitlements │ ├── Info.plist │ ├── License-Creatures-Evolution.txt │ ├── License-NameCorpus.txt │ ├── names-female.txt │ └── names-male.txt ├── Settings Window │ ├── Base.lproj │ │ ├── SettingsViewController.xib │ │ └── SettingsWindowController.xib │ ├── SettingsItem.swift │ ├── SettingsSection.swift │ ├── SettingsViewController.swift │ ├── SettingsWindowController.swift │ ├── Values Views │ │ ├── Base.lproj │ │ │ ├── SettingsBoolCheckboxViewController.xib │ │ │ ├── SettingsBoolSwitchViewController.xib │ │ │ ├── SettingsGeneActivationViewController.xib │ │ │ ├── SettingsImageViewController.xib │ │ │ ├── SettingsIntMenuViewController.xib │ │ │ ├── SettingsSeparatorViewController.xib │ │ │ └── SettingsSliderViewController.xib │ │ ├── SettingsBoolViewController.swift │ │ ├── SettingsDoubleSliderViewController.swift │ │ ├── SettingsGeneActivationViewController.swift │ │ ├── SettingsImageViewController.swift │ │ ├── SettingsIntMenuViewController.swift │ │ ├── SettingsIntSliderViewController.swift │ │ ├── SettingsSeparatorViewController.swift │ │ └── SettingsValueViewController.swift │ └── Views │ │ ├── Genes │ │ ├── AbnegationSettingsViewController.swift │ │ ├── AttackSettingsViewController.swift │ │ ├── CannibalSettingsViewController.swift │ │ ├── DefenseSettingsViewController.swift │ │ ├── DigestionSettingsViewController.swift │ │ ├── ExcretionSettingsViewController.swift │ │ ├── HerbivoreSettingsViewController.swift │ │ ├── ManureSenseSettingsViewController.swift │ │ ├── MeatSenseSettingsViewController.swift │ │ ├── MitosisSettingsViewController.swift │ │ ├── PlantSenseSettingsViewController.swift │ │ ├── PredatorSenseSettingsViewController.swift │ │ ├── PredatorSettingsViewController.swift │ │ ├── PreySenseSettingsViewController.swift │ │ ├── ScavengerSettingsViewController.swift │ │ ├── SexSenseSettingsViewController.swift │ │ ├── SexSettingsViewController.swift │ │ ├── SpeedSettingsViewController.swift │ │ ├── VampireSenseSettingsViewController.swift │ │ └── VampireSettingsViewController.swift │ │ └── Other │ │ ├── CreaturesSettingsViewController.swift │ │ ├── EventLogSettingsViewController.swift │ │ ├── ManureSettingsViewController.swift │ │ ├── MeatSettingsViewController.swift │ │ ├── PlantsSettingsViewController.swift │ │ └── WorldSettingsViewController.swift ├── Settings │ ├── Genes │ │ ├── AbnegationSettings.swift │ │ ├── AttackSettings.swift │ │ ├── CannibalSettings.swift │ │ ├── DefenseSettings.swift │ │ ├── DigestionSettings.swift │ │ ├── ExcretionSettings.swift │ │ ├── HerbivoreSettings.swift │ │ ├── ManureSenseSettings.swift │ │ ├── MeatSenseSettings.swift │ │ ├── MitosisSettings.swift │ │ ├── PlantSenseSettings.swift │ │ ├── PredatorSenseSettings.swift │ │ ├── PredatorSettings.swift │ │ ├── PreySenseSettings.swift │ │ ├── ScavengerSettings.swift │ │ ├── SexSenseSettings.swift │ │ ├── SexSettings.swift │ │ ├── SpeedSettings.swift │ │ ├── VampireSenseSettings.swift │ │ └── VampireSettings.swift │ ├── Other │ │ ├── CombatSettings.swift │ │ ├── CreaturesSettings.swift │ │ ├── EventLogSettings.swift │ │ ├── ManureSettings.swift │ │ ├── MeatSettings.swift │ │ ├── PlantsSettings.swift │ │ └── WorldSettings.swift │ └── Settings.swift ├── SpriteKit │ ├── ImageTexture.swift │ ├── LabelNode.swift │ ├── Scene.swift │ └── SpriteNode.swift ├── Stats Window │ ├── Base.lproj │ │ ├── GeneStatisticsViewController.xib │ │ ├── GeneticStatisticsWindowController.xib │ │ └── ValueGeneGraphViewController.xib │ ├── GeneStatisticsData.swift │ ├── GeneStatisticsGraphView.swift │ ├── GeneStatisticsViewController.swift │ ├── GeneticStatisticsWindowController.swift │ ├── ValueGeneGraphView.swift │ └── ValueGeneGraphViewController.swift ├── Stats │ ├── Base.lproj │ │ ├── CreatureStatusChartViewController.xib │ │ └── StatsViewController.xib │ ├── CreatureStatusChartView.swift │ ├── CreatureStatusChartViewController.swift │ ├── CreatureStatusChartViewItem.swift │ ├── CreatureStatusGraphView.swift │ ├── CreatureStatusItem.swift │ └── StatsViewController.swift ├── Transformers │ ├── BooleanTransformer.swift │ ├── ClassTransformer.swift │ ├── EnergyTransformer.swift │ ├── NameTransformer.swift │ ├── NegateBooleanTransformer.swift │ ├── StatusTransformer.swift │ └── TimeTransformer.swift ├── UI │ ├── BackgroundView.swift │ ├── BadgeView.swift │ ├── DraggableView.swift │ ├── FlippedView.swift │ ├── GraphView.swift │ ├── MouseTrackingButton.swift │ └── TableRowView.swift └── Welcome Window │ ├── WelcomeTipItem.swift │ ├── WelcomeWindowController.swift │ └── WelcomeWindowController.xib ├── IDEAS.md ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: macmade 2 | -------------------------------------------------------------------------------- /.github/workflows/ci-mac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/.github/workflows/ci-mac.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Creatures.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Assets/Creatures.ai -------------------------------------------------------------------------------- /Assets/Food.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Assets/Food.ai -------------------------------------------------------------------------------- /Assets/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Assets/Icon.psd -------------------------------------------------------------------------------- /Assets/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Assets/Screenshot.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Creatures-Evolution.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Creatures-Evolution.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Creatures-Evolution.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Creatures-Evolution.xcodeproj/xcshareddata/xcschemes/Creatures Evolution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution.xcodeproj/xcshareddata/xcschemes/Creatures Evolution.xcscheme -------------------------------------------------------------------------------- /Creatures-Evolution/About Window/AboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/About Window/AboutWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/About Window/Base.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/About Window/Base.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Application/ApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Application/ApplicationDelegate.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Application/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Application/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Application/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Application/Preferences.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Bridging-Header.h -------------------------------------------------------------------------------- /Creatures-Evolution/Credits/Base.lproj/CreditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Credits/Base.lproj/CreditViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Credits/Base.lproj/CreditsWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Credits/Base.lproj/CreditsWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Credits/Credit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Credits/Credit.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Credits/CreditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Credits/CreditViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Credits/CreditsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Credits/CreditsWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Details/Base.lproj/CreatureDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/Base.lproj/CreatureDetailViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Details/Base.lproj/EditNameWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/Base.lproj/EditNameWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Details/Base.lproj/FoodDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/Base.lproj/FoodDetailViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Details/CreatureDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/CreatureDetailViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Details/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/DetailViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Details/EditNameWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/EditNameWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Details/FoodDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Details/FoodDetailViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Effects/Fly.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Effects/Fly.sks -------------------------------------------------------------------------------- /Creatures-Evolution/Effects/Heart.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Effects/Heart.sks -------------------------------------------------------------------------------- /Creatures-Evolution/Effects/Rot.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Effects/Rot.sks -------------------------------------------------------------------------------- /Creatures-Evolution/Effects/Skull.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Effects/Skull.sks -------------------------------------------------------------------------------- /Creatures-Evolution/Event Log/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Event Log/Event.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Event Log/EventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Event Log/EventLog.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Event Log/EventLogWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Event Log/EventLogWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Event Log/EventLogWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Event Log/EventLogWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/Bundle.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/NSAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/NSAppearance.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/NSException.h -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/NSException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/NSException.m -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/NSPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/NSPoint.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/NSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/NSView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Extensions/SKScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Extensions/SKScene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Gene Selection Window/Base.lproj/GeneSelectionWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Gene Selection Window/Base.lproj/GeneSelectionWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Gene Selection Window/GeneSelectionWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Gene Selection Window/GeneSelectionWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/ClampingDouble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/ClampingDouble.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/Constants.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/Destination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/Destination.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/DistanceHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/DistanceHelper.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/EvolutionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/EvolutionHelper.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/GeneInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/GeneInfo.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/NameGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/NameGenerator.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/PredationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/PredationHelper.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/ReproductionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/ReproductionHelper.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Helpers/Weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Helpers/Weak.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Main Window/Base.lproj/MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Main Window/Base.lproj/MainWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Main Window/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Main Window/MainWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Creature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Creature.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Food/Food.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Food/Food.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Food/Manure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Food/Manure.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Food/Meat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Food/Meat.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Food/Plant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Food/Plant.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Abnegation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Abnegation.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Attack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Attack.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Defense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Defense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Digestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Digestion.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Excretion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Excretion.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Abilities/Speed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Abilities/Speed.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Diet/Cannibal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Diet/Cannibal.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Diet/Herbivore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Diet/Herbivore.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Diet/Predator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Diet/Predator.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Diet/Scavenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Diet/Scavenger.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Diet/Vampire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Diet/Vampire.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/DietGene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/DietGene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/DoubleValueGene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/DoubleValueGene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Gene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Gene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/IntValueGene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/IntValueGene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Reproduction/Mitosis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Reproduction/Mitosis.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Reproduction/Sex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Reproduction/Sex.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/ManureSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/ManureSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/MeatSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/MeatSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/PlantSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/PlantSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/PredatorSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/PredatorSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/PreySense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/PreySense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/SexSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/SexSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/Senses/VampireSense.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/Senses/VampireSense.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Organisms/Genes/ValueGene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Organisms/Genes/ValueGene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Basic.imageset/Basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Basic.imageset/Basic.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Basic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Basic.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Beach.imageset/Beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Beach.imageset/Beach.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Beach.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Beach.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Cross.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Cross.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Cross.imageset/Cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Cross.imageset/Cross.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Desert.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Desert.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Desert.imageset/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Desert.imageset/Desert.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Fly.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Fly.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Fly.imageset/Fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Fly.imageset/Fly.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Forrest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Forrest.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Forrest.imageset/Forrest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Forrest.imageset/Forrest.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Heart.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Heart.imageset/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Heart.imageset/Heart.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Herbivore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Herbivore.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Herbivore.imageset/Herbivore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Herbivore.imageset/Herbivore.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Manure.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-1.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-2.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Meat-3.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-1.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-2.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-3.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-4.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Plant-5.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Predator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Predator.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Predator.imageset/Predator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Predator.imageset/Predator.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sand.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sand.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sand.imageset/Sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sand.imageset/Sand.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Scavenger.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Scavenger.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Scavenger.imageset/Scavenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Scavenger.imageset/Scavenger.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-F.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-F.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-F.imageset/Sex-F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-F.imageset/Sex-F.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-M.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-M.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-M.imageset/Sex-M.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-M.imageset/Sex-M.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-MF.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-MF.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Sex-MF.imageset/Sex-MF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Sex-MF.imageset/Sex-MF.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Skull.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Skull.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Skull.imageset/Skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Skull.imageset/Skull.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Spark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Spark.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Spark.imageset/Spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Spark.imageset/Spark.png -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Stones.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Stones.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Stones.imageset/Stones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Stones.imageset/Stones.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/SwordsTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/SwordsTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/SwordsTemplate.imageset/SwordsTemplate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/SwordsTemplate.imageset/SwordsTemplate.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Vampire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Vampire.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Vampire.imageset/Vampire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Vampire.imageset/Vampire.svg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Wood.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Wood.imageset/Contents.json -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Assets.xcassets/Wood.imageset/Wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Assets.xcassets/Wood.imageset/Wood.jpg -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Creatures-Evolution.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Creatures-Evolution.entitlements -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/Info.plist -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/License-Creatures-Evolution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/License-Creatures-Evolution.txt -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/License-NameCorpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/License-NameCorpus.txt -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/names-female.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/names-female.txt -------------------------------------------------------------------------------- /Creatures-Evolution/Resources/names-male.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Resources/names-male.txt -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Base.lproj/SettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Base.lproj/SettingsViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Base.lproj/SettingsWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Base.lproj/SettingsWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/SettingsItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/SettingsItem.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/SettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/SettingsSection.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/SettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/SettingsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/SettingsWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsBoolCheckboxViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsBoolCheckboxViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsBoolSwitchViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsBoolSwitchViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsGeneActivationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsGeneActivationViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsImageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsImageViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsIntMenuViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsIntMenuViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsSeparatorViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsSeparatorViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsSliderViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/Base.lproj/SettingsSliderViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsBoolViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsBoolViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsDoubleSliderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsDoubleSliderViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsGeneActivationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsGeneActivationViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsImageViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsIntMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsIntMenuViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsIntSliderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsIntSliderViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsSeparatorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsSeparatorViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Values Views/SettingsValueViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Values Views/SettingsValueViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/AbnegationSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/AbnegationSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/AttackSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/AttackSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/CannibalSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/CannibalSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/DefenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/DefenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/DigestionSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/DigestionSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/ExcretionSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/ExcretionSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/HerbivoreSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/HerbivoreSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/ManureSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/ManureSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/MeatSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/MeatSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/MitosisSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/MitosisSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/PlantSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/PlantSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/PredatorSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/PredatorSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/PredatorSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/PredatorSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/PreySenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/PreySenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/ScavengerSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/ScavengerSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/SexSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/SexSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/SexSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/SexSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/SpeedSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/SpeedSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/VampireSenseSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/VampireSenseSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Genes/VampireSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Genes/VampireSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/CreaturesSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/CreaturesSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/EventLogSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/EventLogSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/ManureSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/ManureSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/MeatSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/MeatSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/PlantsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/PlantsSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings Window/Views/Other/WorldSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings Window/Views/Other/WorldSettingsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/AbnegationSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/AbnegationSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/AttackSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/AttackSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/CannibalSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/CannibalSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/DefenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/DefenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/DigestionSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/DigestionSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/ExcretionSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/ExcretionSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/HerbivoreSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/HerbivoreSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/ManureSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/ManureSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/MeatSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/MeatSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/MitosisSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/MitosisSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/PlantSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/PlantSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/PredatorSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/PredatorSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/PredatorSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/PredatorSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/PreySenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/PreySenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/ScavengerSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/ScavengerSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/SexSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/SexSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/SexSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/SexSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/SpeedSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/SpeedSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/VampireSenseSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/VampireSenseSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Genes/VampireSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Genes/VampireSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/CombatSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/CombatSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/CreaturesSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/CreaturesSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/EventLogSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/EventLogSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/ManureSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/ManureSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/MeatSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/MeatSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/PlantsSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/PlantsSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Other/WorldSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Other/WorldSettings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Settings/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Settings/Settings.swift -------------------------------------------------------------------------------- /Creatures-Evolution/SpriteKit/ImageTexture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/SpriteKit/ImageTexture.swift -------------------------------------------------------------------------------- /Creatures-Evolution/SpriteKit/LabelNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/SpriteKit/LabelNode.swift -------------------------------------------------------------------------------- /Creatures-Evolution/SpriteKit/Scene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/SpriteKit/Scene.swift -------------------------------------------------------------------------------- /Creatures-Evolution/SpriteKit/SpriteNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/SpriteKit/SpriteNode.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/Base.lproj/GeneStatisticsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/Base.lproj/GeneStatisticsViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/Base.lproj/GeneticStatisticsWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/Base.lproj/GeneticStatisticsWindowController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/Base.lproj/ValueGeneGraphViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/Base.lproj/ValueGeneGraphViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/GeneStatisticsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/GeneStatisticsData.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/GeneStatisticsGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/GeneStatisticsGraphView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/GeneStatisticsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/GeneStatisticsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/GeneticStatisticsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/GeneticStatisticsWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/ValueGeneGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/ValueGeneGraphView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats Window/ValueGeneGraphViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats Window/ValueGeneGraphViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/Base.lproj/CreatureStatusChartViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/Base.lproj/CreatureStatusChartViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/Base.lproj/StatsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/Base.lproj/StatsViewController.xib -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/CreatureStatusChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/CreatureStatusChartView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/CreatureStatusChartViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/CreatureStatusChartViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/CreatureStatusChartViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/CreatureStatusChartViewItem.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/CreatureStatusGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/CreatureStatusGraphView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/CreatureStatusItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/CreatureStatusItem.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Stats/StatsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Stats/StatsViewController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/BooleanTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/BooleanTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/ClassTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/ClassTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/EnergyTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/EnergyTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/NameTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/NameTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/NegateBooleanTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/NegateBooleanTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/StatusTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/StatusTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Transformers/TimeTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Transformers/TimeTransformer.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/BackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/BackgroundView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/BadgeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/BadgeView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/DraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/DraggableView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/FlippedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/FlippedView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/GraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/GraphView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/MouseTrackingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/MouseTrackingButton.swift -------------------------------------------------------------------------------- /Creatures-Evolution/UI/TableRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/UI/TableRowView.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Welcome Window/WelcomeTipItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Welcome Window/WelcomeTipItem.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Welcome Window/WelcomeWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Welcome Window/WelcomeWindowController.swift -------------------------------------------------------------------------------- /Creatures-Evolution/Welcome Window/WelcomeWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/Creatures-Evolution/Welcome Window/WelcomeWindowController.xib -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/IDEAS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Creatures-Evolution/HEAD/README.md --------------------------------------------------------------------------------