├── .gitignore ├── .gitmodules ├── .vs └── SmartBlocks │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── project-colors.json │ └── v17 │ ├── .futdcache.v1 │ └── .suo ├── BlockBuilder ├── BlockBuilder.csproj ├── BlockBuilder.csproj.user ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── bin │ └── Debug │ │ └── net6.0-windows │ │ ├── BlockBuilder.deps.json │ │ ├── BlockBuilder.dll │ │ ├── BlockBuilder.exe │ │ ├── BlockBuilder.pdb │ │ ├── BlockBuilder.runtimeconfig.json │ │ ├── IKVM.AWT.WinForms.dll │ │ ├── IKVM.OpenJDK.Beans.dll │ │ ├── IKVM.OpenJDK.Charsets.dll │ │ ├── IKVM.OpenJDK.Corba.dll │ │ ├── IKVM.OpenJDK.Core.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.Runtime.JNI.dll │ │ ├── IKVM.Runtime.dll │ │ ├── MedallionRandom.dll │ │ ├── MinecraftTypes.dll │ │ ├── MinecraftTypes.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── SmartBlocks.dll │ │ ├── SmartBlocks.pdb │ │ ├── SmartNbt.dll │ │ ├── SmartNbt.pdb │ │ ├── blocks.json │ │ └── ref │ │ └── BlockBuilder.dll └── obj │ ├── BlockBuilder.csproj.nuget.dgspec.json │ ├── BlockBuilder.csproj.nuget.g.props │ ├── BlockBuilder.csproj.nuget.g.targets │ ├── Debug │ └── net6.0-windows │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── BlockBuilder.AssemblyInfo.cs │ │ ├── BlockBuilder.AssemblyInfoInputs.cache │ │ ├── BlockBuilder.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── BlockBuilder.GlobalUsings.g.cs │ │ ├── BlockBuilder.MainForm.resources │ │ ├── BlockBuilder.assets.cache │ │ ├── BlockBuilder.csproj.AssemblyReference.cache │ │ ├── BlockBuilder.csproj.CopyComplete │ │ ├── BlockBuilder.csproj.CoreCompileInputs.cache │ │ ├── BlockBuilder.csproj.FileListAbsolute.txt │ │ ├── BlockBuilder.csproj.GenerateResource.cache │ │ ├── BlockBuilder.designer.deps.json │ │ ├── BlockBuilder.designer.runtimeconfig.json │ │ ├── BlockBuilder.dll │ │ ├── BlockBuilder.genruntimeconfig.cache │ │ ├── BlockBuilder.pdb │ │ ├── apphost.exe │ │ └── ref │ │ └── BlockBuilder.dll │ ├── project.assets.json │ └── project.nuget.cache ├── LICENSE ├── README.md ├── SmartBlocks.sln ├── SmartBlocks.sln.DotSettings.user ├── SmartBlocks ├── Blocks │ ├── ArmorDropChance.cs │ ├── ArmorType.cs │ ├── Block.cs │ ├── BlockRegistry.cs │ ├── MaterialType.cs │ └── PotionEffect.cs ├── Entities │ ├── AreaEffectCloud.cs │ ├── Arrows │ │ ├── AbstractArrow.cs │ │ ├── Arrow.cs │ │ ├── ArrowFlag.cs │ │ ├── SpectralArrow.cs │ │ └── ThrownTrident.cs │ ├── Attributes │ │ ├── AttributeList.cs │ │ ├── AttributeModifier.cs │ │ ├── Effect.cs │ │ ├── MobAttribute.cs │ │ ├── MobAttributeList.cs │ │ └── ModifierOperation.cs │ ├── Boat.cs │ ├── BoundingBox.cs │ ├── DragonFireball.cs │ ├── EndCrystal.cs │ ├── Entity.cs │ ├── EntityToolType.cs │ ├── ExperienceOrb.cs │ ├── EyeOfEnder.cs │ ├── FallingBlock.cs │ ├── Fireball.cs │ ├── FireworkRocketEntity.cs │ ├── FishingHook.cs │ ├── Flags │ │ ├── ArmorStandFlag.cs │ │ ├── BatFlag.cs │ │ ├── BeeFlag.cs │ │ ├── BlazeFlag.cs │ │ ├── EntityFlag.cs │ │ ├── HandStateFlag.cs │ │ ├── HorseFlag.cs │ │ ├── IronGolemFlag.cs │ │ ├── MobFlag.cs │ │ ├── PandaFlag.cs │ │ ├── SheepFlag.cs │ │ ├── SnowGolemFlag.cs │ │ ├── SpiderFlag.cs │ │ └── VexFlag.cs │ ├── GlowItemFrame.cs │ ├── ItemEntity.cs │ ├── ItemFrame.cs │ ├── LeashKnot.cs │ ├── LightningBolt.cs │ ├── Living │ │ ├── Ageable │ │ │ ├── AbstractHorse.cs │ │ │ ├── AgeableMob.cs │ │ │ ├── Animal.cs │ │ │ ├── Axolotl.cs │ │ │ ├── AxolotlVariant.cs │ │ │ ├── Bee.cs │ │ │ ├── ChestedHorse.cs │ │ │ ├── Chicken.cs │ │ │ ├── Cow.cs │ │ │ ├── Donkey.cs │ │ │ ├── Fox.cs │ │ │ ├── FoxFlag.cs │ │ │ ├── FoxVariant.cs │ │ │ ├── Hoglin.cs │ │ │ ├── Horse.cs │ │ │ ├── Llama.cs │ │ │ ├── LlamaVariant.cs │ │ │ ├── Mooshroom.cs │ │ │ ├── Mule.cs │ │ │ ├── Ocelot.cs │ │ │ ├── Panda.cs │ │ │ ├── Pig.cs │ │ │ ├── PolarBear.cs │ │ │ ├── Rabbit.cs │ │ │ ├── Sheep.cs │ │ │ ├── SheepColor.cs │ │ │ ├── SkeletonHorse.cs │ │ │ ├── Strider.cs │ │ │ ├── TraderLlama.cs │ │ │ ├── Turtle.cs │ │ │ └── ZombieHorse.cs │ │ ├── ArmorStand.cs │ │ ├── ArmorType.cs │ │ ├── Goat.cs │ │ ├── LivingEntity.cs │ │ ├── Mobs │ │ │ ├── AbstractFish.cs │ │ │ ├── AbstractGolem.cs │ │ │ ├── AmbientCreature.cs │ │ │ ├── Bat.cs │ │ │ ├── Cod.cs │ │ │ ├── Dolphin.cs │ │ │ ├── GlowSquid.cs │ │ │ ├── IronGolem.cs │ │ │ ├── Memories │ │ │ │ ├── Brain.cs │ │ │ │ └── IMemory.cs │ │ │ ├── Mob.cs │ │ │ ├── PathFinderMob.cs │ │ │ ├── PufferFish.cs │ │ │ ├── Salmon.cs │ │ │ ├── Shulker.cs │ │ │ ├── SnowGolem.cs │ │ │ ├── Squid.cs │ │ │ ├── TropicalFish.cs │ │ │ └── WaterAnimal.cs │ │ ├── Monsters │ │ │ ├── AbstractIllager.cs │ │ │ ├── AbstractSkeleton.cs │ │ │ ├── BasePiglin.cs │ │ │ ├── Blaze.cs │ │ │ ├── CaveSpider.cs │ │ │ ├── Creeper.cs │ │ │ ├── CreeperState.cs │ │ │ ├── DragonPhase.cs │ │ │ ├── Drowned.cs │ │ │ ├── ElderGuardian.cs │ │ │ ├── EnderDragon.cs │ │ │ ├── Enderman.cs │ │ │ ├── Endermite.cs │ │ │ ├── Evoker.cs │ │ │ ├── EvokerFangs.cs │ │ │ ├── Flying.cs │ │ │ ├── Ghast.cs │ │ │ ├── Giant.cs │ │ │ ├── Guardian.cs │ │ │ ├── Husk.cs │ │ │ ├── IllagerSpell.cs │ │ │ ├── Illusioner.cs │ │ │ ├── MagmaCube.cs │ │ │ ├── Monster.cs │ │ │ ├── Phantom.cs │ │ │ ├── Piglin.cs │ │ │ ├── PiglinBrute.cs │ │ │ ├── Pillager.cs │ │ │ ├── Raider.cs │ │ │ ├── Ravager.cs │ │ │ ├── Silverfish.cs │ │ │ ├── Skeleton.cs │ │ │ ├── Slime.cs │ │ │ ├── SpellCasterIllager.cs │ │ │ ├── Spider.cs │ │ │ ├── Stray.cs │ │ │ ├── Vex.cs │ │ │ ├── Vindicator.cs │ │ │ ├── Witch.cs │ │ │ ├── Wither.cs │ │ │ ├── WitherSkeleton.cs │ │ │ ├── Zoglin.cs │ │ │ ├── Zombie.cs │ │ │ ├── ZombieVillager.cs │ │ │ └── ZombifiedPiglin.cs │ │ ├── PlayerEntity.cs │ │ ├── Tameable │ │ │ ├── Cat.cs │ │ │ ├── CatVariant.cs │ │ │ ├── Parrot.cs │ │ │ ├── ParrotVariant.cs │ │ │ ├── TameableAnimal.cs │ │ │ ├── TameableFlag.cs │ │ │ └── Wolf.cs │ │ ├── Villagers │ │ │ ├── AbstractVillager.cs │ │ │ ├── Villager.cs │ │ │ ├── VillagerData.cs │ │ │ ├── VillagerJob.cs │ │ │ ├── VillagerType.cs │ │ │ └── WanderingTrader.cs │ │ └── Weapons │ │ │ ├── TridentDamageLevel.cs │ │ │ └── WeaponTier.cs │ ├── LlamaSpit.cs │ ├── Marker.cs │ ├── Minecarts │ │ ├── AbstractMinecart.cs │ │ ├── AbstractMinecartContainer.cs │ │ ├── ExplosiveMinecart.cs │ │ ├── Minecart.cs │ │ ├── MinecartChest.cs │ │ ├── MinecartCommandBlock.cs │ │ ├── MinecartFurnace.cs │ │ ├── MinecartHopper.cs │ │ └── MinecartSpawner.cs │ ├── Painting.cs │ ├── PaintingKind.cs │ ├── Particle.cs │ ├── Particles │ │ ├── AmbientEntityEffect.cs │ │ ├── AngryVillager.cs │ │ ├── Ash.cs │ │ ├── Barrier.cs │ │ ├── BlockParticle.cs │ │ ├── Bubble.cs │ │ ├── BubbleColumnUp.cs │ │ ├── BubblePop.cs │ │ ├── CampfireCosySmoke.cs │ │ ├── CampfireSignalSmoke.cs │ │ ├── Cloud.cs │ │ ├── Composter.cs │ │ ├── CrimsonSpore.cs │ │ ├── Crit.cs │ │ ├── CurrentDown.cs │ │ ├── DamageIndicator.cs │ │ ├── Dolphin.cs │ │ ├── DragonBreath.cs │ │ ├── DrippingDripstoneLava.cs │ │ ├── DrippingDripstoneWater.cs │ │ ├── DrippingHoney.cs │ │ ├── DrippingLava.cs │ │ ├── DrippingObsidianTear.cs │ │ ├── DrippingWater.cs │ │ ├── Dust.cs │ │ ├── DustColorTransition.cs │ │ ├── Effect.cs │ │ ├── ElderGuardian.cs │ │ ├── ElectricSpark.cs │ │ ├── Enchant.cs │ │ ├── EnchantedHit.cs │ │ ├── EndRod.cs │ │ ├── EntityEffect.cs │ │ ├── Explosion.cs │ │ ├── ExplosionEmitter.cs │ │ ├── FallingDripstoneLava.cs │ │ ├── FallingDripstoneWater.cs │ │ ├── FallingDust.cs │ │ ├── FallingHoney.cs │ │ ├── FallingLava.cs │ │ ├── FallingNectar.cs │ │ ├── FallingObsidianTear.cs │ │ ├── FallingSporeBlossom.cs │ │ ├── FallingWater.cs │ │ ├── Firework.cs │ │ ├── Fishing.cs │ │ ├── Flame.cs │ │ ├── Flash.cs │ │ ├── Glow.cs │ │ ├── GlowSquidInk.cs │ │ ├── HappyVillager.cs │ │ ├── Heart.cs │ │ ├── InstantEffect.cs │ │ ├── ItemParticle.cs │ │ ├── ItemSlime.cs │ │ ├── ItemSnowball.cs │ │ ├── LandingHoney.cs │ │ ├── LandingLava.cs │ │ ├── LandingObsidianTear.cs │ │ ├── LargeSmoke.cs │ │ ├── Lava.cs │ │ ├── Light.cs │ │ ├── Mycelium.cs │ │ ├── Nautilus.cs │ │ ├── Note.cs │ │ ├── Poof.cs │ │ ├── Portal.cs │ │ ├── Rain.cs │ │ ├── ReversePortal.cs │ │ ├── Scrape.cs │ │ ├── SmallFlame.cs │ │ ├── Smoke.cs │ │ ├── Sneeze.cs │ │ ├── Snowflake.cs │ │ ├── Soul.cs │ │ ├── SoulFireFlame.cs │ │ ├── Spit.cs │ │ ├── Splash.cs │ │ ├── SporeBlossomAir.cs │ │ ├── SquidInk.cs │ │ ├── SweepAttack.cs │ │ ├── TotemOfUndying.cs │ │ ├── Underwater.cs │ │ ├── Vibration.cs │ │ ├── WarpedSpore.cs │ │ ├── WaxOff.cs │ │ ├── WaxOn.cs │ │ ├── WhiteAsh.cs │ │ └── Witch.cs │ ├── Pose.cs │ ├── PrimedExplosive.cs │ ├── ShulkerBullet.cs │ ├── SmallFireball.cs │ ├── Snowball.cs │ ├── ThrownEgg.cs │ ├── ThrownEnderPearl.cs │ ├── ThrownExperienceBottle.cs │ ├── ThrownPotion.cs │ └── WitherSkull.cs ├── Generators │ ├── AmplifiedGenerator.cs │ ├── AmplifiedLargeBiomesGenerator.cs │ ├── DefaultLayers.cs │ ├── EndGenerator.cs │ ├── FlatGenerator.cs │ ├── GenType.cs │ ├── IGenerator.cs │ ├── LargeBiomesGenerator.cs │ ├── NetherGenerator.cs │ └── NormalGenerator.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── blocks.json ├── SmartBlocks - Backup (1).csproj ├── SmartBlocks - Backup (2).csproj ├── SmartBlocks - Backup.csproj ├── SmartBlocks.csproj ├── SmartBlocks.csproj.user ├── Utils │ ├── ExtensionMethods.cs │ ├── FlagsHelper.cs │ ├── GameRule.cs │ └── SkinPart.cs ├── Worlds │ ├── Biome.cs │ ├── Chunk.cs │ ├── ChunkBuffer.cs │ ├── Dimension.cs │ ├── DragonFight.cs │ ├── IBlockContainer.cs │ ├── ITagProvider.cs │ ├── InterestPoint.cs │ ├── Level.cs │ ├── Raids │ │ ├── Raid.cs │ │ ├── RaidList.cs │ │ └── RaidStatus.cs │ ├── Region.cs │ ├── RegionFile.cs │ ├── Section.cs │ ├── Structure.cs │ ├── World.cs │ └── WorldLoadException.cs ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── IKVM.AWT.WinForms.dll │ │ ├── IKVM.OpenJDK.Beans.dll │ │ ├── IKVM.OpenJDK.Charsets.dll │ │ ├── IKVM.OpenJDK.Corba.dll │ │ ├── IKVM.OpenJDK.Core.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.Runtime.JNI.dll │ │ ├── IKVM.Runtime.dll │ │ ├── MinecraftTypes.dll │ │ ├── MinecraftTypes.pdb │ │ ├── SmartBlocks.deps.json │ │ ├── SmartBlocks.dll │ │ ├── SmartBlocks.pdb │ │ ├── SmartNbt 1.1.0.0.dll │ │ ├── SmartNbt.dll │ │ ├── SmartNbt.pdb │ │ └── ref │ │ └── SmartBlocks.dll └── obj │ ├── Debug │ ├── net20 │ │ ├── SmartBlocks.AssemblyInfo.cs │ │ ├── SmartBlocks.AssemblyInfoInputs.cache │ │ ├── SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmartBlocks.GlobalUsings.g.cs │ │ ├── SmartBlocks.assets.cache │ │ ├── SmartBlocks.csproj.AssemblyReference.cache │ │ ├── SmartBlocks.csproj.CoreCompileInputs.cache │ │ └── SmartBlocks.csproj.FileListAbsolute.txt │ ├── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── SmartBlocks.AssemblyInfo.cs │ │ ├── SmartBlocks.AssemblyInfoInputs.cache │ │ ├── SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmartBlocks.GlobalUsings.g.cs │ │ ├── SmartBlocks.Properties.Resources.resources │ │ ├── SmartBlocks.assets.cache │ │ ├── SmartBlocks.csproj.AssemblyReference.cache │ │ ├── SmartBlocks.csproj.CopyComplete │ │ ├── SmartBlocks.csproj.CoreCompileInputs.cache │ │ ├── SmartBlocks.csproj.FileListAbsolute.txt │ │ ├── SmartBlocks.csproj.GenerateResource.cache │ │ ├── SmartBlocks.dll │ │ ├── SmartBlocks.pdb │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── ref │ │ │ └── SmartBlocks.dll │ ├── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── SmartBlocks.AssemblyInfo.cs │ │ ├── SmartBlocks.AssemblyInfoInputs.cache │ │ ├── SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmartBlocks.GlobalUsings.g.cs │ │ ├── SmartBlocks.assets.cache │ │ ├── SmartBlocks.csproj.AssemblyReference.cache │ │ ├── SmartBlocks.csproj.CoreCompileInputs.cache │ │ └── SmartBlocks.csproj.FileListAbsolute.txt │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── SmartBlocks.AssemblyInfo.cs │ │ ├── SmartBlocks.AssemblyInfoInputs.cache │ │ ├── SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmartBlocks.GlobalUsings.g.cs │ │ ├── SmartBlocks.assets.cache │ │ ├── SmartBlocks.csproj.AssemblyReference.cache │ │ ├── SmartBlocks.csproj.CoreCompileInputs.cache │ │ └── SmartBlocks.csproj.FileListAbsolute.txt │ ├── SmartBlocks.csproj.nuget.dgspec.json │ ├── SmartBlocks.csproj.nuget.g.props │ ├── SmartBlocks.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── SmartTest ├── Program.cs ├── SmartTest.csproj ├── bin └── Debug │ └── net6.0 │ ├── IKVM.AWT.WinForms.dll │ ├── IKVM.OpenJDK.Beans.dll │ ├── IKVM.OpenJDK.Charsets.dll │ ├── IKVM.OpenJDK.Corba.dll │ ├── IKVM.OpenJDK.Core.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.Runtime.JNI.dll │ ├── IKVM.Runtime.dll │ ├── MedallionRandom.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── MinecraftTypes.dll │ ├── MinecraftTypes.pdb │ ├── Newtonsoft.Json.dll │ ├── SmartBlocks.dll │ ├── SmartBlocks.pdb │ ├── SmartNbt.dll │ ├── SmartNbt.pdb │ ├── SmartTest.deps.json │ ├── SmartTest.dll │ ├── SmartTest.exe │ ├── SmartTest.pdb │ ├── SmartTest.runtimeconfig.json │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Drawing.Common.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── System.Windows.Extensions.dll │ ├── Worlds │ └── test │ │ ├── level.dat │ │ ├── region │ │ ├── r.-1.-1.mca │ │ ├── r.-1.0.mca │ │ ├── r.0.-1.mca │ │ └── r.0.0.mca │ │ └── session.lock │ ├── ref │ └── SmartTest.dll │ └── runtimes │ ├── unix │ └── lib │ │ └── net6.0 │ │ └── System.Drawing.Common.dll │ └── win │ └── lib │ └── net6.0 │ ├── Microsoft.Win32.SystemEvents.dll │ ├── System.Drawing.Common.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ └── System.Windows.Extensions.dll └── obj ├── Debug └── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── SmartTest.AssemblyInfo.cs │ ├── SmartTest.AssemblyInfoInputs.cache │ ├── SmartTest.GeneratedMSBuildEditorConfig.editorconfig │ ├── SmartTest.GlobalUsings.g.cs │ ├── SmartTest.assets.cache │ ├── SmartTest.csproj.AssemblyReference.cache │ ├── SmartTest.csproj.CopyComplete │ ├── SmartTest.csproj.CoreCompileInputs.cache │ ├── SmartTest.csproj.FileListAbsolute.txt │ ├── SmartTest.dll │ ├── SmartTest.genruntimeconfig.cache │ ├── SmartTest.pdb │ ├── apphost.exe │ └── ref │ └── SmartTest.dll ├── SmartTest.csproj.nuget.dgspec.json ├── SmartTest.csproj.nuget.g.props ├── SmartTest.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vs/SmartBlocks/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.vs/SmartBlocks/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/SmartBlocks/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.vs/SmartBlocks/project-colors.json -------------------------------------------------------------------------------- /.vs/SmartBlocks/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.vs/SmartBlocks/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/SmartBlocks/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/.vs/SmartBlocks/v17/.suo -------------------------------------------------------------------------------- /BlockBuilder/BlockBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/BlockBuilder.csproj -------------------------------------------------------------------------------- /BlockBuilder/BlockBuilder.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/BlockBuilder.csproj.user -------------------------------------------------------------------------------- /BlockBuilder/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/MainForm.Designer.cs -------------------------------------------------------------------------------- /BlockBuilder/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/MainForm.cs -------------------------------------------------------------------------------- /BlockBuilder/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/MainForm.resx -------------------------------------------------------------------------------- /BlockBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/Program.cs -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.deps.json -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.exe -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.pdb -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/BlockBuilder.runtimeconfig.json -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/IKVM.Runtime.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/MedallionRandom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/MedallionRandom.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/MinecraftTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/MinecraftTypes.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/MinecraftTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/MinecraftTypes.pdb -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/SmartBlocks.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/SmartBlocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/SmartBlocks.pdb -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/SmartNbt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/SmartNbt.dll -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/SmartNbt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/SmartNbt.pdb -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/blocks.json -------------------------------------------------------------------------------- /BlockBuilder/bin/Debug/net6.0-windows/ref/BlockBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/bin/Debug/net6.0-windows/ref/BlockBuilder.dll -------------------------------------------------------------------------------- /BlockBuilder/obj/BlockBuilder.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/BlockBuilder.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /BlockBuilder/obj/BlockBuilder.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/BlockBuilder.csproj.nuget.g.props -------------------------------------------------------------------------------- /BlockBuilder/obj/BlockBuilder.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/BlockBuilder.csproj.nuget.g.targets -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.AssemblyInfo.cs -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0d9488cb33bf3a81c3bc1766335330920b066f7d 2 | -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.GlobalUsings.g.cs -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.MainForm.resources -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.assets.cache -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0bb1a1e1eded52cc274158dbc3df646b55eb4e0f 2 | -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.designer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.designer.deps.json -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.designer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.designer.runtimeconfig.json -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.dll -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0ee3ebf47c8ee85a62eb8d9dc6ee83d406e33fca 2 | -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/BlockBuilder.pdb -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/apphost.exe -------------------------------------------------------------------------------- /BlockBuilder/obj/Debug/net6.0-windows/ref/BlockBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/Debug/net6.0-windows/ref/BlockBuilder.dll -------------------------------------------------------------------------------- /BlockBuilder/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/project.assets.json -------------------------------------------------------------------------------- /BlockBuilder/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/BlockBuilder/obj/project.nuget.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/README.md -------------------------------------------------------------------------------- /SmartBlocks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks.sln -------------------------------------------------------------------------------- /SmartBlocks.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks.sln.DotSettings.user -------------------------------------------------------------------------------- /SmartBlocks/Blocks/ArmorDropChance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/ArmorDropChance.cs -------------------------------------------------------------------------------- /SmartBlocks/Blocks/ArmorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/ArmorType.cs -------------------------------------------------------------------------------- /SmartBlocks/Blocks/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/Block.cs -------------------------------------------------------------------------------- /SmartBlocks/Blocks/BlockRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/BlockRegistry.cs -------------------------------------------------------------------------------- /SmartBlocks/Blocks/MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/MaterialType.cs -------------------------------------------------------------------------------- /SmartBlocks/Blocks/PotionEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Blocks/PotionEffect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/AreaEffectCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/AreaEffectCloud.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Arrows/AbstractArrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Arrows/AbstractArrow.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Arrows/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Arrows/Arrow.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Arrows/ArrowFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Arrows/ArrowFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Arrows/SpectralArrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Arrows/SpectralArrow.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Arrows/ThrownTrident.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Arrows/ThrownTrident.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/AttributeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/AttributeList.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/AttributeModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/AttributeModifier.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/Effect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/MobAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/MobAttribute.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/MobAttributeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/MobAttributeList.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Attributes/ModifierOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Attributes/ModifierOperation.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Boat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Boat.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/BoundingBox.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/DragonFireball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/DragonFireball.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/EndCrystal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/EndCrystal.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Entity.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/EntityToolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/EntityToolType.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ExperienceOrb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ExperienceOrb.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/EyeOfEnder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/EyeOfEnder.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/FallingBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/FallingBlock.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Fireball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Fireball.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/FireworkRocketEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/FireworkRocketEntity.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/FishingHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/FishingHook.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/ArmorStandFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/ArmorStandFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/BatFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/BatFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/BeeFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/BeeFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/BlazeFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/BlazeFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/EntityFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/EntityFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/HandStateFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/HandStateFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/HorseFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/HorseFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/IronGolemFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/IronGolemFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/MobFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/MobFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/PandaFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/PandaFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/SheepFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/SheepFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/SnowGolemFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/SnowGolemFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/SpiderFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/SpiderFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Flags/VexFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Flags/VexFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/GlowItemFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/GlowItemFrame.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ItemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ItemEntity.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ItemFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ItemFrame.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/LeashKnot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/LeashKnot.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/LightningBolt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/LightningBolt.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/AbstractHorse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/AbstractHorse.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/AgeableMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/AgeableMob.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Animal.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Axolotl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Axolotl.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/AxolotlVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/AxolotlVariant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Bee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Bee.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/ChestedHorse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/ChestedHorse.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Chicken.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Cow.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Donkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Donkey.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Fox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Fox.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/FoxFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/FoxFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/FoxVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/FoxVariant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Hoglin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Hoglin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Horse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Horse.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Llama.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Llama.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/LlamaVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/LlamaVariant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Mooshroom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Mooshroom.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Mule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Mule.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Ocelot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Ocelot.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Panda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Panda.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Pig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Pig.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/PolarBear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/PolarBear.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Rabbit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Rabbit.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Sheep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Sheep.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/SheepColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/SheepColor.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/SkeletonHorse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/SkeletonHorse.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Strider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Strider.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/TraderLlama.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/TraderLlama.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/Turtle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/Turtle.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Ageable/ZombieHorse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Ageable/ZombieHorse.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/ArmorStand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/ArmorStand.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/ArmorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/ArmorType.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Goat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Goat.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/LivingEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/LivingEntity.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/AbstractFish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/AbstractFish.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/AbstractGolem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/AbstractGolem.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/AmbientCreature.cs: -------------------------------------------------------------------------------- 1 | namespace SmartBlocks.Entities.Living.Mobs; 2 | 3 | public class AmbientCreature : Mob 4 | { 5 | } -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Bat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Bat.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Cod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Cod.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Dolphin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Dolphin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/GlowSquid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/GlowSquid.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/IronGolem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/IronGolem.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Memories/Brain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Memories/Brain.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Memories/IMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Memories/IMemory.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Mob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Mob.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/PathFinderMob.cs: -------------------------------------------------------------------------------- 1 | namespace SmartBlocks.Entities.Living.Mobs; 2 | 3 | public class PathFinderMob : Mob 4 | { 5 | } -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/PufferFish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/PufferFish.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Salmon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Salmon.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Shulker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Shulker.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/SnowGolem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/SnowGolem.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/Squid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/Squid.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/TropicalFish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Mobs/TropicalFish.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Mobs/WaterAnimal.cs: -------------------------------------------------------------------------------- 1 | namespace SmartBlocks.Entities.Living.Mobs; 2 | 3 | public class WaterAnimal : PathFinderMob 4 | { 5 | } -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/AbstractIllager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/AbstractIllager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/AbstractSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/AbstractSkeleton.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/BasePiglin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/BasePiglin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Blaze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Blaze.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/CaveSpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/CaveSpider.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Creeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Creeper.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/CreeperState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/CreeperState.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/DragonPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/DragonPhase.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Drowned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Drowned.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/ElderGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/ElderGuardian.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/EnderDragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/EnderDragon.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Enderman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Enderman.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Endermite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Endermite.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Evoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Evoker.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/EvokerFangs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/EvokerFangs.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Flying.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Flying.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Ghast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Ghast.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Giant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Giant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Guardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Guardian.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Husk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Husk.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/IllagerSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/IllagerSpell.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Illusioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Illusioner.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/MagmaCube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/MagmaCube.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Monster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Monster.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Phantom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Phantom.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Piglin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Piglin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/PiglinBrute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/PiglinBrute.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Pillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Pillager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Raider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Raider.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Ravager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Ravager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Silverfish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Silverfish.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Skeleton.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Slime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Slime.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/SpellCasterIllager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/SpellCasterIllager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Spider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Spider.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Stray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Stray.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Vex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Vex.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Vindicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Vindicator.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Witch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Witch.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Wither.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Wither.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/WitherSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/WitherSkeleton.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Zoglin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Zoglin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/Zombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/Zombie.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/ZombieVillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/ZombieVillager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Monsters/ZombifiedPiglin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Monsters/ZombifiedPiglin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/PlayerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/PlayerEntity.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/Cat.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/CatVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/CatVariant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/Parrot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/Parrot.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/ParrotVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/ParrotVariant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/TameableAnimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/TameableAnimal.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/TameableFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/TameableFlag.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Tameable/Wolf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Tameable/Wolf.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/AbstractVillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/AbstractVillager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/Villager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/Villager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/VillagerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/VillagerData.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/VillagerJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/VillagerJob.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/VillagerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/VillagerType.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Villagers/WanderingTrader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Villagers/WanderingTrader.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Weapons/TridentDamageLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Weapons/TridentDamageLevel.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Living/Weapons/WeaponTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Living/Weapons/WeaponTier.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/LlamaSpit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/LlamaSpit.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Marker.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/AbstractMinecart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/AbstractMinecart.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/AbstractMinecartContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/AbstractMinecartContainer.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/ExplosiveMinecart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/ExplosiveMinecart.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/Minecart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/Minecart.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/MinecartChest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/MinecartChest.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/MinecartCommandBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/MinecartCommandBlock.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/MinecartFurnace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/MinecartFurnace.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/MinecartHopper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/MinecartHopper.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Minecarts/MinecartSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Minecarts/MinecartSpawner.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Painting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Painting.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/PaintingKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/PaintingKind.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particle.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/AmbientEntityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/AmbientEntityEffect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/AngryVillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/AngryVillager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Ash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Ash.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Barrier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Barrier.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/BlockParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/BlockParticle.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Bubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Bubble.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/BubbleColumnUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/BubbleColumnUp.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/BubblePop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/BubblePop.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/CampfireCosySmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/CampfireCosySmoke.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/CampfireSignalSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/CampfireSignalSmoke.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Cloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Cloud.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Composter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Composter.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/CrimsonSpore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/CrimsonSpore.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Crit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Crit.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/CurrentDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/CurrentDown.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DamageIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DamageIndicator.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Dolphin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Dolphin.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DragonBreath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DragonBreath.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingDripstoneLava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingDripstoneLava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingDripstoneWater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingDripstoneWater.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingHoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingHoney.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingLava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingLava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingObsidianTear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingObsidianTear.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DrippingWater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DrippingWater.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Dust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Dust.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/DustColorTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/DustColorTransition.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Effect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ElderGuardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ElderGuardian.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ElectricSpark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ElectricSpark.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Enchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Enchant.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/EnchantedHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/EnchantedHit.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/EndRod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/EndRod.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/EntityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/EntityEffect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Explosion.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ExplosionEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ExplosionEmitter.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingDripstoneLava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingDripstoneLava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingDripstoneWater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingDripstoneWater.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingDust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingDust.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingHoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingHoney.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingLava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingLava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingNectar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingNectar.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingObsidianTear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingObsidianTear.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingSporeBlossom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingSporeBlossom.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/FallingWater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/FallingWater.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Firework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Firework.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Fishing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Fishing.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Flame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Flame.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Flash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Flash.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Glow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Glow.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/GlowSquidInk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/GlowSquidInk.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/HappyVillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/HappyVillager.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Heart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Heart.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/InstantEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/InstantEffect.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ItemParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ItemParticle.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ItemSlime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ItemSlime.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ItemSnowball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ItemSnowball.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/LandingHoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/LandingHoney.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/LandingLava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/LandingLava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/LandingObsidianTear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/LandingObsidianTear.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/LargeSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/LargeSmoke.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Lava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Lava.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Light.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Mycelium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Mycelium.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Nautilus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Nautilus.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Note.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Poof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Poof.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Portal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Portal.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Rain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Rain.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/ReversePortal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/ReversePortal.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Scrape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Scrape.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/SmallFlame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/SmallFlame.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Smoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Smoke.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Sneeze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Sneeze.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Snowflake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Snowflake.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Soul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Soul.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/SoulFireFlame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/SoulFireFlame.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Spit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Spit.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Splash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Splash.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/SporeBlossomAir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/SporeBlossomAir.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/SquidInk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/SquidInk.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/SweepAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/SweepAttack.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/TotemOfUndying.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/TotemOfUndying.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Underwater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Underwater.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Vibration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Vibration.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/WarpedSpore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/WarpedSpore.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/WaxOff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/WaxOff.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/WaxOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/WaxOn.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/WhiteAsh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/WhiteAsh.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Particles/Witch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Particles/Witch.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Pose.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/PrimedExplosive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/PrimedExplosive.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ShulkerBullet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ShulkerBullet.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/SmallFireball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/SmallFireball.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/Snowball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/Snowball.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ThrownEgg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ThrownEgg.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ThrownEnderPearl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ThrownEnderPearl.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ThrownExperienceBottle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ThrownExperienceBottle.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/ThrownPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/ThrownPotion.cs -------------------------------------------------------------------------------- /SmartBlocks/Entities/WitherSkull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Entities/WitherSkull.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/AmplifiedGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/AmplifiedGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/AmplifiedLargeBiomesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/AmplifiedLargeBiomesGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/DefaultLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/DefaultLayers.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/EndGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/EndGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/FlatGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/FlatGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/GenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/GenType.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/IGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/LargeBiomesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/LargeBiomesGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/NetherGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/NetherGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Generators/NormalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Generators/NormalGenerator.cs -------------------------------------------------------------------------------- /SmartBlocks/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SmartBlocks/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Properties/Resources.resx -------------------------------------------------------------------------------- /SmartBlocks/Resources/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Resources/blocks.json -------------------------------------------------------------------------------- /SmartBlocks/SmartBlocks - Backup (1).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/SmartBlocks - Backup (1).csproj -------------------------------------------------------------------------------- /SmartBlocks/SmartBlocks - Backup (2).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/SmartBlocks - Backup (2).csproj -------------------------------------------------------------------------------- /SmartBlocks/SmartBlocks - Backup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/SmartBlocks - Backup.csproj -------------------------------------------------------------------------------- /SmartBlocks/SmartBlocks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/SmartBlocks.csproj -------------------------------------------------------------------------------- /SmartBlocks/SmartBlocks.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/SmartBlocks.csproj.user -------------------------------------------------------------------------------- /SmartBlocks/Utils/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Utils/ExtensionMethods.cs -------------------------------------------------------------------------------- /SmartBlocks/Utils/FlagsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Utils/FlagsHelper.cs -------------------------------------------------------------------------------- /SmartBlocks/Utils/GameRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Utils/GameRule.cs -------------------------------------------------------------------------------- /SmartBlocks/Utils/SkinPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Utils/SkinPart.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Biome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Biome.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Chunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Chunk.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/ChunkBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/ChunkBuffer.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Dimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Dimension.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/DragonFight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/DragonFight.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/IBlockContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/IBlockContainer.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/ITagProvider.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartBlocks/Worlds/InterestPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/InterestPoint.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Level.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Raids/Raid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Raids/Raid.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Raids/RaidList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Raids/RaidList.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Raids/RaidStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Raids/RaidStatus.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Region.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/RegionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/RegionFile.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Section.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/Structure.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/World.cs -------------------------------------------------------------------------------- /SmartBlocks/Worlds/WorldLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/Worlds/WorldLoadException.cs -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/IKVM.Runtime.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/MinecraftTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/MinecraftTypes.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/MinecraftTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/MinecraftTypes.pdb -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartBlocks.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartBlocks.deps.json -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartBlocks.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartBlocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartBlocks.pdb -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartNbt 1.1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartNbt 1.1.0.0.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartNbt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartNbt.dll -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/SmartNbt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/SmartNbt.pdb -------------------------------------------------------------------------------- /SmartBlocks/bin/Debug/net6.0/ref/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/bin/Debug/net6.0/ref/SmartBlocks.dll -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net20/SmartBlocks.AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4b4f2d8320caeecda8c24a5c4fc06c18053ed29d 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net20/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net20/SmartBlocks.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net20/SmartBlocks.assets.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a679b67d5e09f2787ae5ea92882cfe8a969cf7be 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net20/SmartBlocks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net20/SmartBlocks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4b4f2d8320caeecda8c24a5c4fc06c18053ed29d 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.Properties.Resources.resources -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.assets.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 24ed6755dde26df00656581d5d8a1feb2f8fb7e3 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.dll -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/SmartBlocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/SmartBlocks.pdb -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/net6.0/ref/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/net6.0/ref/SmartBlocks.dll -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4b4f2d8320caeecda8c24a5c4fc06c18053ed29d 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.assets.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 29aae835fdb38e8e26e5fbcd570949174a851663 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netcoreapp3.1/SmartBlocks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4b4f2d8320caeecda8c24a5c4fc06c18053ed29d 2 | -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.assets.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/Debug/netstandard2.0/SmartBlocks.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartBlocks/obj/SmartBlocks.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/SmartBlocks.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SmartBlocks/obj/SmartBlocks.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/SmartBlocks.csproj.nuget.g.props -------------------------------------------------------------------------------- /SmartBlocks/obj/SmartBlocks.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/SmartBlocks.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SmartBlocks/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/project.assets.json -------------------------------------------------------------------------------- /SmartBlocks/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartBlocks/obj/project.nuget.cache -------------------------------------------------------------------------------- /SmartTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/Program.cs -------------------------------------------------------------------------------- /SmartTest/SmartTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/SmartTest.csproj -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/IKVM.Runtime.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/MedallionRandom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/MedallionRandom.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/MinecraftTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/MinecraftTypes.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/MinecraftTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/MinecraftTypes.pdb -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartBlocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartBlocks.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartBlocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartBlocks.pdb -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartNbt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartNbt.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartNbt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartNbt.pdb -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartTest.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartTest.deps.json -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartTest.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartTest.exe -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartTest.pdb -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/SmartTest.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/SmartTest.runtimeconfig.json -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Worlds/test/level.dat -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/region/r.-1.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Worlds/test/region/r.-1.-1.mca -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/region/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Worlds/test/region/r.-1.0.mca -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/region/r.0.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Worlds/test/region/r.0.-1.mca -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/region/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/Worlds/test/region/r.0.0.mca -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/Worlds/test/session.lock: -------------------------------------------------------------------------------- 1 | 637798457086498563 -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/ref/SmartTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/ref/SmartTest.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.GlobalUsings.g.cs -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.assets.cache -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9769613709eea176a2f9299dd4d2af965b3efec4 2 | -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.dll -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.genruntimeconfig.cache -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/SmartTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/SmartTest.pdb -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /SmartTest/obj/Debug/net6.0/ref/SmartTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/Debug/net6.0/ref/SmartTest.dll -------------------------------------------------------------------------------- /SmartTest/obj/SmartTest.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/SmartTest.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SmartTest/obj/SmartTest.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/SmartTest.csproj.nuget.g.props -------------------------------------------------------------------------------- /SmartTest/obj/SmartTest.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/SmartTest.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SmartTest/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/project.assets.json -------------------------------------------------------------------------------- /SmartTest/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopperPenguin96/SmartBlocks/HEAD/SmartTest/obj/project.nuget.cache --------------------------------------------------------------------------------