├── .gitignore ├── .vs └── Culebra_GH │ └── v14 │ └── .suo ├── Culebra ├── Attributes │ └── Attributes.cs ├── Behavior │ ├── Controller.cs │ └── Types │ │ ├── MeshCrawler.cs │ │ └── SelfOrganize.cs ├── CulebraData.csproj ├── Drawing │ └── Vizualization.cs ├── Objects │ ├── BabyCreeper.cs │ ├── Creeper.cs │ ├── CulebraObject.cs │ └── Seeker.cs ├── Operations │ └── Actions.cs ├── Properties │ └── AssemblyInfo.cs ├── Utilities │ ├── ColorUtility.cs │ ├── Convert.cs │ ├── GHSupport.cs │ ├── General.cs │ └── Mapping.cs ├── bin │ └── Debug │ │ ├── Culebra.pdb │ │ ├── IKVM.AWT.WinForms.dll │ │ ├── IKVM.OpenJDK.Beans.dll │ │ ├── IKVM.OpenJDK.Charsets.dll │ │ ├── IKVM.OpenJDK.Corba.dll │ │ ├── IKVM.OpenJDK.Core.dll │ │ ├── IKVM.OpenJDK.Jdbc.dll │ │ ├── IKVM.OpenJDK.Management.dll │ │ ├── IKVM.OpenJDK.Media.dll │ │ ├── IKVM.OpenJDK.Misc.dll │ │ ├── IKVM.OpenJDK.Naming.dll │ │ ├── IKVM.OpenJDK.Remoting.dll │ │ ├── IKVM.OpenJDK.Security.dll │ │ ├── IKVM.OpenJDK.SwingAWT.dll │ │ ├── IKVM.OpenJDK.Text.dll │ │ ├── IKVM.OpenJDK.Util.dll │ │ ├── IKVM.OpenJDK.XML.API.dll │ │ ├── IKVM.OpenJDK.XML.Bind.dll │ │ ├── IKVM.OpenJDK.XML.Parse.dll │ │ ├── IKVM.Runtime.JNI.dll │ │ ├── IKVM.Runtime.dll │ │ ├── core.dll │ │ ├── culebra.dll │ │ └── toxiclibscore.dll └── obj │ └── Debug │ ├── Culebra.csproj.FileListAbsolute.txt │ ├── Culebra.csprojResolveAssemblyReference.cache │ ├── Culebra.dll │ ├── Culebra.pdb │ ├── CulebraData.csproj.CoreCompileInputs.cache │ ├── CulebraData.csproj.FileListAbsolute.txt │ ├── CulebraData.csprojAssemblyReference.cache │ ├── CulebraData.csprojResolveAssemblyReference.cache │ ├── CulebraData.dll │ ├── CulebraData.pdb │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Culebra_GH.sln ├── Culebra_GH.v12.suo ├── Culebra_GH ├── Behaviors │ ├── Attract_Behavior.cs │ ├── Behavior_Controller.cs │ ├── Bundling_Behavior.cs │ ├── Bundling_Mapped_Behavior.cs │ ├── Flocking_Behavior.cs │ ├── Flocking_Mapped_Behavior.cs │ ├── MeshCrawl_BabyMaker.cs │ ├── MeshCrawl_Behavior.cs │ ├── Noise_Behavior.cs │ ├── Noise_Mapped_Behavior.cs │ ├── Repel_Behavior.cs │ ├── Separation_Behavior.cs │ ├── Stigmergy_Behavior.cs │ ├── SuperWander_Behavior.cs │ ├── Tracking_BabyMaker.cs │ ├── Tracking_Behavior.cs │ ├── Tracking_Mapped_BabyMaker.cs │ ├── Wandering_Behavior.cs │ └── Wandering_Mapped_Behavior.cs ├── Culebra_GH.csproj ├── Culebra_GHInfo.cs ├── Data Structures │ ├── BehaviorData.cs │ ├── BundlingData.cs │ ├── ColorData.cs │ ├── FlockingData.cs │ ├── ForceData.cs │ ├── MeshCrawlData.cs │ ├── NoiseData.cs │ ├── SeparationData.cs │ ├── StigmergyData.cs │ ├── TrackingData.cs │ ├── TrailData.cs │ ├── VisualData.cs │ └── WanderingData.cs ├── Engine │ ├── Bundling_Engine.cs │ ├── Creeper_Engine.cs │ ├── Creeper_Engine_Dual.cs │ ├── Creeper_Engine_Zombie.cs │ └── Engine_Global.cs ├── Objects │ ├── IGH_BehaviorData.cs │ └── IGH_VisualData.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Attract_A.png │ ├── Bundling.png │ ├── Bundling_Mapped.png │ ├── Controller.png │ ├── DiscoTrail.png │ ├── DiscoTrail_B.png │ ├── Engine.png │ ├── Engine_Bundling.png │ ├── Engine_CreepyCrawlers_A.png │ ├── Engine_CreepyCrawlers_B.png │ ├── Flocking.png │ ├── Flocking_Map.png │ ├── GradientTrail.png │ ├── GraphicPolyline.png │ ├── MeshCrawl.png │ ├── MeshCrawl_B.png │ ├── MoveSettings.png │ ├── PerlinNoise.png │ ├── PerlinNoise_Mapped.png │ ├── Repel_A.png │ ├── Separate.png │ ├── Settings_Init.png │ ├── Spawn_Box.png │ ├── Spawn_Point.png │ ├── Testing.png │ ├── Tracking.png │ ├── Tracking_Baby.png │ ├── Tracking_BabyMapped.png │ ├── TrailData.png │ ├── VisualSettings.png │ ├── Wandering.png │ ├── Wandering_Mapped.png │ ├── Wandering_Weave.png │ └── zombie.png ├── Settings │ ├── InitSettings.cs │ └── Move_Settings.cs ├── Settings_Visual │ ├── Disco_Color.cs │ ├── Gradient_Color.cs │ ├── Graphic_Polyline.cs │ ├── Trail_Data.cs │ └── Visual_Settings.cs ├── SpawnTypes │ ├── Spawn_Box.cs │ └── Spawn_Point.cs ├── Utilities │ ├── CustomAttributes.cs │ └── Timer.cs ├── bin │ ├── CulebraData.XML │ ├── CulebraData.dll │ ├── CulebraData.pdb │ ├── Culebra_GH.gha │ ├── Culebra_GH.pdb │ ├── IKVM.AWT.WinForms.dll │ ├── IKVM.OpenJDK.Beans.dll │ ├── IKVM.OpenJDK.Charsets.dll │ ├── IKVM.OpenJDK.Corba.dll │ ├── IKVM.OpenJDK.Core.dll │ ├── IKVM.OpenJDK.Jdbc.dll │ ├── IKVM.OpenJDK.Management.dll │ ├── IKVM.OpenJDK.Media.dll │ ├── IKVM.OpenJDK.Misc.dll │ ├── IKVM.OpenJDK.Naming.dll │ ├── IKVM.OpenJDK.Remoting.dll │ ├── IKVM.OpenJDK.Security.dll │ ├── IKVM.OpenJDK.SwingAWT.dll │ ├── IKVM.OpenJDK.Text.dll │ ├── IKVM.OpenJDK.Util.dll │ ├── IKVM.OpenJDK.XML.API.dll │ ├── IKVM.OpenJDK.XML.Bind.dll │ ├── IKVM.OpenJDK.XML.Parse.dll │ ├── IKVM.Runtime.JNI.dll │ ├── IKVM.Runtime.dll │ ├── core.dll │ ├── culebra_og.dll │ └── toxiclibscore.dll └── obj │ └── Debug64 │ ├── Culebra_GH.Properties.Resources.resources │ ├── Culebra_GH.csproj.CopyComplete │ ├── Culebra_GH.csproj.CoreCompileInputs.cache │ ├── Culebra_GH.csproj.FileListAbsolute.txt │ ├── Culebra_GH.csproj.GenerateResource.Cache │ ├── Culebra_GH.csprojAssemblyReference.cache │ ├── Culebra_GH.csprojResolveAssemblyReference.cache │ ├── Culebra_GH.dll │ ├── Culebra_GH.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Help ├── Documentation.chm └── LastBuild.log ├── LICENSE ├── README.md ├── images ├── Culebra_2.0.jpg ├── Culebra_2.0_B.jpg └── Culebra_ClassDiagram_Small.jpg ├── libs ├── IKVM.OpenJDK.Core.dll ├── core.dll ├── culebra.dll ├── culebra_og.dll └── toxiclibscore.dll └── textures ├── MAP.jpg ├── MAP2.jpg ├── MAP3.jpg └── texture.png /.gitignore: -------------------------------------------------------------------------------- 1 | libs/ 2 | [Bb]in/ 3 | .vs/Culebra_GH/v16/.suo 4 | -------------------------------------------------------------------------------- /.vs/Culebra_GH/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/.vs/Culebra_GH/v14/.suo -------------------------------------------------------------------------------- /Culebra/Attributes/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Attributes/Attributes.cs -------------------------------------------------------------------------------- /Culebra/Behavior/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Behavior/Controller.cs -------------------------------------------------------------------------------- /Culebra/Behavior/Types/MeshCrawler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Behavior/Types/MeshCrawler.cs -------------------------------------------------------------------------------- /Culebra/Behavior/Types/SelfOrganize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Behavior/Types/SelfOrganize.cs -------------------------------------------------------------------------------- /Culebra/CulebraData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/CulebraData.csproj -------------------------------------------------------------------------------- /Culebra/Drawing/Vizualization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Drawing/Vizualization.cs -------------------------------------------------------------------------------- /Culebra/Objects/BabyCreeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Objects/BabyCreeper.cs -------------------------------------------------------------------------------- /Culebra/Objects/Creeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Objects/Creeper.cs -------------------------------------------------------------------------------- /Culebra/Objects/CulebraObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Objects/CulebraObject.cs -------------------------------------------------------------------------------- /Culebra/Objects/Seeker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Objects/Seeker.cs -------------------------------------------------------------------------------- /Culebra/Operations/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Operations/Actions.cs -------------------------------------------------------------------------------- /Culebra/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Culebra/Utilities/ColorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Utilities/ColorUtility.cs -------------------------------------------------------------------------------- /Culebra/Utilities/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Utilities/Convert.cs -------------------------------------------------------------------------------- /Culebra/Utilities/GHSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Utilities/GHSupport.cs -------------------------------------------------------------------------------- /Culebra/Utilities/General.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Utilities/General.cs -------------------------------------------------------------------------------- /Culebra/Utilities/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/Utilities/Mapping.cs -------------------------------------------------------------------------------- /Culebra/bin/Debug/Culebra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/Culebra.pdb -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Jdbc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Jdbc.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.XML.Bind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.XML.Bind.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.OpenJDK.XML.Parse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.OpenJDK.XML.Parse.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/IKVM.Runtime.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/core.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/culebra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/culebra.dll -------------------------------------------------------------------------------- /Culebra/bin/Debug/toxiclibscore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/bin/Debug/toxiclibscore.dll -------------------------------------------------------------------------------- /Culebra/obj/Debug/Culebra.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/Culebra.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Culebra/obj/Debug/Culebra.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/Culebra.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Culebra/obj/Debug/Culebra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/Culebra.dll -------------------------------------------------------------------------------- /Culebra/obj/Debug/Culebra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/Culebra.pdb -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e1922ea678a34a1758fa8a32911f826c0b5755c5 2 | -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/CulebraData.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/CulebraData.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/CulebraData.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/CulebraData.dll -------------------------------------------------------------------------------- /Culebra/obj/Debug/CulebraData.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/CulebraData.pdb -------------------------------------------------------------------------------- /Culebra/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Culebra/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra_GH.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH.sln -------------------------------------------------------------------------------- /Culebra_GH.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH.v12.suo -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Attract_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Attract_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Behavior_Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Behavior_Controller.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Bundling_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Bundling_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Bundling_Mapped_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Bundling_Mapped_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Flocking_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Flocking_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Flocking_Mapped_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Flocking_Mapped_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/MeshCrawl_BabyMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/MeshCrawl_BabyMaker.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/MeshCrawl_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/MeshCrawl_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Noise_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Noise_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Noise_Mapped_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Noise_Mapped_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Repel_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Repel_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Separation_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Separation_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Stigmergy_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Stigmergy_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/SuperWander_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/SuperWander_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Tracking_BabyMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Tracking_BabyMaker.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Tracking_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Tracking_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Tracking_Mapped_BabyMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Tracking_Mapped_BabyMaker.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Wandering_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Wandering_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Behaviors/Wandering_Mapped_Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Behaviors/Wandering_Mapped_Behavior.cs -------------------------------------------------------------------------------- /Culebra_GH/Culebra_GH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Culebra_GH.csproj -------------------------------------------------------------------------------- /Culebra_GH/Culebra_GHInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Culebra_GHInfo.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/BehaviorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/BehaviorData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/BundlingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/BundlingData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/ColorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/ColorData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/FlockingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/FlockingData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/ForceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/ForceData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/MeshCrawlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/MeshCrawlData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/NoiseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/NoiseData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/SeparationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/SeparationData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/StigmergyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/StigmergyData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/TrackingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/TrackingData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/TrailData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/TrailData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/VisualData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/VisualData.cs -------------------------------------------------------------------------------- /Culebra_GH/Data Structures/WanderingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Data Structures/WanderingData.cs -------------------------------------------------------------------------------- /Culebra_GH/Engine/Bundling_Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Engine/Bundling_Engine.cs -------------------------------------------------------------------------------- /Culebra_GH/Engine/Creeper_Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Engine/Creeper_Engine.cs -------------------------------------------------------------------------------- /Culebra_GH/Engine/Creeper_Engine_Dual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Engine/Creeper_Engine_Dual.cs -------------------------------------------------------------------------------- /Culebra_GH/Engine/Creeper_Engine_Zombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Engine/Creeper_Engine_Zombie.cs -------------------------------------------------------------------------------- /Culebra_GH/Engine/Engine_Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Engine/Engine_Global.cs -------------------------------------------------------------------------------- /Culebra_GH/Objects/IGH_BehaviorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Objects/IGH_BehaviorData.cs -------------------------------------------------------------------------------- /Culebra_GH/Objects/IGH_VisualData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Objects/IGH_VisualData.cs -------------------------------------------------------------------------------- /Culebra_GH/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Culebra_GH/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Culebra_GH/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Properties/Resources.resx -------------------------------------------------------------------------------- /Culebra_GH/Resources/Attract_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Attract_A.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Bundling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Bundling.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Bundling_Mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Bundling_Mapped.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Controller.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/DiscoTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/DiscoTrail.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/DiscoTrail_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/DiscoTrail_B.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Engine.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Engine_Bundling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Engine_Bundling.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Engine_CreepyCrawlers_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Engine_CreepyCrawlers_A.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Engine_CreepyCrawlers_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Engine_CreepyCrawlers_B.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Flocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Flocking.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Flocking_Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Flocking_Map.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/GradientTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/GradientTrail.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/GraphicPolyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/GraphicPolyline.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/MeshCrawl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/MeshCrawl.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/MeshCrawl_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/MeshCrawl_B.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/MoveSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/MoveSettings.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/PerlinNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/PerlinNoise.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/PerlinNoise_Mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/PerlinNoise_Mapped.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Repel_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Repel_A.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Separate.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Settings_Init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Settings_Init.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Spawn_Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Spawn_Box.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Spawn_Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Spawn_Point.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Testing.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Tracking.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Tracking_Baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Tracking_Baby.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Tracking_BabyMapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Tracking_BabyMapped.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/TrailData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/TrailData.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/VisualSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/VisualSettings.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Wandering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Wandering.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Wandering_Mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Wandering_Mapped.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/Wandering_Weave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/Wandering_Weave.png -------------------------------------------------------------------------------- /Culebra_GH/Resources/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Resources/zombie.png -------------------------------------------------------------------------------- /Culebra_GH/Settings/InitSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings/InitSettings.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings/Move_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings/Move_Settings.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings_Visual/Disco_Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings_Visual/Disco_Color.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings_Visual/Gradient_Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings_Visual/Gradient_Color.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings_Visual/Graphic_Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings_Visual/Graphic_Polyline.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings_Visual/Trail_Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings_Visual/Trail_Data.cs -------------------------------------------------------------------------------- /Culebra_GH/Settings_Visual/Visual_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Settings_Visual/Visual_Settings.cs -------------------------------------------------------------------------------- /Culebra_GH/SpawnTypes/Spawn_Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/SpawnTypes/Spawn_Box.cs -------------------------------------------------------------------------------- /Culebra_GH/SpawnTypes/Spawn_Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/SpawnTypes/Spawn_Point.cs -------------------------------------------------------------------------------- /Culebra_GH/Utilities/CustomAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Utilities/CustomAttributes.cs -------------------------------------------------------------------------------- /Culebra_GH/Utilities/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/Utilities/Timer.cs -------------------------------------------------------------------------------- /Culebra_GH/bin/CulebraData.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/CulebraData.XML -------------------------------------------------------------------------------- /Culebra_GH/bin/CulebraData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/CulebraData.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/CulebraData.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/CulebraData.pdb -------------------------------------------------------------------------------- /Culebra_GH/bin/Culebra_GH.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/Culebra_GH.gha -------------------------------------------------------------------------------- /Culebra_GH/bin/Culebra_GH.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/Culebra_GH.pdb -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Jdbc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Jdbc.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.XML.Bind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.XML.Bind.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.OpenJDK.XML.Parse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.OpenJDK.XML.Parse.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/IKVM.Runtime.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/core.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/culebra_og.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/culebra_og.dll -------------------------------------------------------------------------------- /Culebra_GH/bin/toxiclibscore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/bin/toxiclibscore.dll -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.Properties.Resources.resources -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3eab2c90c30a0297411a88d74fd3ea2e016f3f9c 2 | -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.dll -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/Culebra_GH.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/Culebra_GH.pdb -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Culebra_GH/obj/Debug64/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Culebra_GH/obj/Debug64/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Help/Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Help/Documentation.chm -------------------------------------------------------------------------------- /Help/LastBuild.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/Help/LastBuild.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/README.md -------------------------------------------------------------------------------- /images/Culebra_2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/images/Culebra_2.0.jpg -------------------------------------------------------------------------------- /images/Culebra_2.0_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/images/Culebra_2.0_B.jpg -------------------------------------------------------------------------------- /images/Culebra_ClassDiagram_Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/images/Culebra_ClassDiagram_Small.jpg -------------------------------------------------------------------------------- /libs/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/libs/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /libs/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/libs/core.dll -------------------------------------------------------------------------------- /libs/culebra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/libs/culebra.dll -------------------------------------------------------------------------------- /libs/culebra_og.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/libs/culebra_og.dll -------------------------------------------------------------------------------- /libs/toxiclibscore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/libs/toxiclibscore.dll -------------------------------------------------------------------------------- /textures/MAP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/textures/MAP.jpg -------------------------------------------------------------------------------- /textures/MAP2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/textures/MAP2.jpg -------------------------------------------------------------------------------- /textures/MAP3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/textures/MAP3.jpg -------------------------------------------------------------------------------- /textures/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elQuixote/Culebra/HEAD/textures/texture.png --------------------------------------------------------------------------------