├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── Updating.md ├── codegen ├── _copybooks │ ├── DD-CODEGEN-DIR-LIST.cpy │ ├── DD-CODEGEN-JSON.cpy │ └── DD-CODEGEN-TEMPLATE.cpy ├── codegen.cob ├── common │ ├── data.cob │ ├── optimizer.cob │ ├── output.cob │ ├── templates.cob │ └── util.cob ├── data │ └── registries.cob ├── generators │ ├── blocks_loot_table.cob │ ├── items.cob │ ├── packets.cob │ └── registries.cob └── templates │ ├── blocks_loot_table │ ├── callback.tpl.cob │ ├── condition-any-of.tpl.cob │ ├── condition-block-state-property.tpl.cob │ ├── condition-explosion.tpl.cob │ ├── condition-inverted.tpl.cob │ ├── condition-match-tool.tpl.cob │ ├── condition-random-chance.tpl.cob │ ├── condition-table-bonus.tpl.cob │ ├── entry-alternative.tpl.cob │ ├── entry-item.tpl.cob │ ├── function-explosion-decay.tpl.cob │ ├── function-limit-count.tpl.cob │ ├── function-set-count.tpl.cob │ ├── main.tpl.cob │ ├── number-binomial.tpl.cob │ ├── number-constant.tpl.cob │ ├── number-uniform.tpl.cob │ ├── pool.tpl.cob │ └── registration.tpl.cob │ ├── items │ ├── main.tpl.cob │ └── registration.tpl.cob │ ├── packets │ ├── direction.tpl.cob │ ├── main.tpl.cob │ ├── packet.tpl.cob │ └── state.tpl.cob │ └── registries │ ├── entry.tpl.cob │ ├── main.tpl.cob │ └── registry.tpl.cob ├── cpp ├── cobolcraft_util.cpp └── cobolcraft_util.h ├── renovate.json ├── src ├── _copybooks │ ├── assert │ │ ├── ASSERT-FAILED.cpy │ │ └── ASSERT.cpy │ ├── callbacks │ │ ├── DD-CALLBACK-BLOCK-DESTROY.cpy │ │ ├── DD-CALLBACK-BLOCK-ENTITY-ALLOCATE.cpy │ │ ├── DD-CALLBACK-BLOCK-ENTITY-DESERIALIZE.cpy │ │ ├── DD-CALLBACK-BLOCK-ENTITY-SERIALIZE.cpy │ │ ├── DD-CALLBACK-BLOCK-FACE.cpy │ │ ├── DD-CALLBACK-BLOCK-INTERACT.cpy │ │ ├── DD-CALLBACK-BLOCK-ITEM.cpy │ │ ├── DD-CALLBACK-BLOCK-REPLACEABLE.cpy │ │ ├── DD-CALLBACK-COMMAND-EXECUTE.cpy │ │ ├── DD-CALLBACK-ENTITY-DESERIALIZE.cpy │ │ ├── DD-CALLBACK-ENTITY-SERIALIZE.cpy │ │ ├── DD-CALLBACK-ENTITY-TICK.cpy │ │ ├── DD-CALLBACK-ITEM-USE.cpy │ │ ├── DD-CALLBACK-WINDOW-CLOSE.cpy │ │ ├── DD-CALLBACK-WINDOW-DROP.cpy │ │ ├── DD-CALLBACK-WINDOW-SET-SLOT.cpy │ │ └── DD-CALLBACK-WINDOW-SYNC.cpy │ ├── constants │ │ ├── DD-CLIENT-STATES.cpy │ │ ├── DD-COMMAND-CONSTANTS.cpy │ │ ├── DD-PACKET-DIRECTIONS.cpy │ │ └── DD-VERSION.cpy │ ├── procedures │ │ ├── PROC-PACKET-INIT.cpy │ │ └── PROC-SKIP-WHITESPACE.cpy │ ├── state │ │ ├── DD-BLOCKS.cpy │ │ ├── DD-CALLBACKS.cpy │ │ ├── DD-CLIENTS.cpy │ │ ├── DD-COMMAND-NODES.cpy │ │ ├── DD-COMMANDS.cpy │ │ ├── DD-ITEMS.cpy │ │ ├── DD-PACKET-HANDLERS.cpy │ │ ├── DD-PACKET-IDS.cpy │ │ ├── DD-PLAYERS.cpy │ │ ├── DD-RECIPES.cpy │ │ ├── DD-REGION-FILES.cpy │ │ ├── DD-REGISTRIES.cpy │ │ ├── DD-SERVER-PROPERTIES.cpy │ │ ├── DD-TAGS.cpy │ │ ├── DD-WHITELIST.cpy │ │ └── DD-WORLD.cpy │ └── structs │ │ ├── DD-AABB.cpy │ │ ├── DD-BLOCK-ENTITY-SIGN.cpy │ │ ├── DD-BLOCK-ENTITY.cpy │ │ ├── DD-BLOCK-STATE.cpy │ │ ├── DD-CHUNK-ENTITY.cpy │ │ ├── DD-CHUNK-REF.cpy │ │ ├── DD-ENTITY.cpy │ │ ├── DD-INVENTORY-SLOT.cpy │ │ ├── DD-NBT-DECODER.cpy │ │ ├── DD-NBT-ENCODER.cpy │ │ ├── DD-PACKET.cpy │ │ ├── DD-REGION-FILE-REF.cpy │ │ └── DD-SIGN-LINES.cpy ├── blockentities │ └── sign.cob ├── blocks.cob ├── blocks │ ├── air.cob │ ├── bed.cob │ ├── crafting_table.cob │ ├── door.cob │ ├── generic.cob │ ├── lava.cob │ ├── sign.cob │ ├── slab.cob │ ├── tall_grass.cob │ ├── torch.cob │ ├── trapdoor.cob │ └── water.cob ├── callbacks.cob ├── client-chunks.cob ├── commands.cob ├── commands │ ├── gamemode.cob │ ├── help.cob │ ├── kill.cob │ ├── save.cob │ ├── say.cob │ ├── stop.cob │ ├── time.cob │ └── whitelist.cob ├── components.cob ├── datapack.cob ├── encoding │ ├── decode.cob │ ├── encode.cob │ ├── json-encode.cob │ ├── json-parse.cob │ ├── nbt-decode.cob │ ├── nbt-encode.cob │ ├── strings.cob │ └── uuid.cob ├── entities │ ├── base.cob │ ├── generic.cob │ └── item.cob ├── files.cob ├── inventory │ ├── inventory.cob │ ├── window-crafting.cob │ └── window-player.cob ├── items.cob ├── items │ ├── bed.cob │ ├── blocks.cob │ ├── bucket.cob │ ├── button.cob │ ├── common.cob │ ├── door.cob │ ├── lava-bucket.cob │ ├── rotated-pillar.cob │ ├── sign.cob │ ├── slab.cob │ ├── stairs.cob │ ├── torch.cob │ ├── trapdoor.cob │ └── water-bucket.cob ├── loot-tables.cob ├── main.cob ├── packets.cob ├── packets │ ├── clientbound │ │ ├── configuration │ │ │ ├── feature-flags.cob │ │ │ ├── finish-configuration.cob │ │ │ ├── known-packs.cob │ │ │ ├── registry.cob │ │ │ └── update-tags.cob │ │ ├── disconnect.cob │ │ ├── login │ │ │ └── login-success.cob │ │ ├── play │ │ │ ├── ack-block-change.cob │ │ │ ├── add-player.cob │ │ │ ├── block-destruction.cob │ │ │ ├── block-entity-data.cob │ │ │ ├── block-update.cob │ │ │ ├── bundle-delimiter.cob │ │ │ ├── chunkdata.cob │ │ │ ├── commands.cob │ │ │ ├── debug-sample.cob │ │ │ ├── entity-animation.cob │ │ │ ├── entity-event.cob │ │ │ ├── entity-position-sync.cob │ │ │ ├── entity-sound.cob │ │ │ ├── game-event.cob │ │ │ ├── keepalive.cob │ │ │ ├── login-play.cob │ │ │ ├── open-screen.cob │ │ │ ├── open-sign-editor.cob │ │ │ ├── player-abilities.cob │ │ │ ├── player-chat.cob │ │ │ ├── remove-entity.cob │ │ │ ├── remove-player.cob │ │ │ ├── respawn.cob │ │ │ ├── set-center-chunk.cob │ │ │ ├── set-container-content.cob │ │ │ ├── set-entity-metadata.cob │ │ │ ├── set-equipment.cob │ │ │ ├── set-experience.cob │ │ │ ├── set-head-rotation.cob │ │ │ ├── set-health.cob │ │ │ ├── set-held-item.cob │ │ │ ├── set-player-position.cob │ │ │ ├── spawn-entity.cob │ │ │ ├── system-chat.cob │ │ │ ├── take-item-entity.cob │ │ │ ├── update-time.cob │ │ │ └── world-event.cob │ │ ├── plugin-message.cob │ │ └── status │ │ │ ├── ping-response.cob │ │ │ └── status.cob │ └── serverbound │ │ ├── configuration │ │ ├── client-information.cob │ │ └── finish-configuration.cob │ │ ├── handshake │ │ └── intention.cob │ │ ├── login │ │ ├── hello.cob │ │ └── login-acknowledged.cob │ │ ├── play │ │ ├── accept-teleport.cob │ │ ├── chat-command.cob │ │ ├── chat.cob │ │ ├── client-command.cob │ │ ├── container-click.cob │ │ ├── container-close.cob │ │ ├── debug-subscription.cob │ │ ├── keepalive.cob │ │ ├── move-player-pos-rot.cob │ │ ├── move-player-pos.cob │ │ ├── move-player-rot.cob │ │ ├── move-player-status.cob │ │ ├── pick-block.cob │ │ ├── player-abilities.cob │ │ ├── player-action.cob │ │ ├── player-command.cob │ │ ├── set-carried-item.cob │ │ ├── set-creative-slot.cob │ │ ├── sign-update.cob │ │ ├── swing.cob │ │ ├── use-item-on.cob │ │ └── use-item.cob │ │ └── status │ │ ├── ping-request.cob │ │ └── status-request.cob ├── parsers │ └── recipe │ │ ├── result.cob │ │ ├── shaped.cob │ │ └── shapeless.cob ├── physics.cob ├── players │ ├── player-io.cob │ └── players.cob ├── region.cob ├── registries.cob ├── server-properties.cob ├── server.cob ├── util │ ├── chat.cob │ └── coordinates.cob ├── whitelist.cob └── world │ ├── blocks.cob │ ├── chunk-io.cob │ ├── chunks.cob │ ├── entities.cob │ ├── level.cob │ └── world.cob └── tests ├── _copybooks ├── TEST-ASSERT.cpy ├── TEST-CASE.cpy ├── TEST-SKIP.cpy ├── TEST-SUITE.cpy └── TEST-UNIT.cpy ├── cpp.test.cob ├── encoding ├── decode.test.cob ├── encode.test.cob ├── json-encode.test.cob ├── json-parse.test.cob ├── nbt-decode.test.cob ├── nbt-encode.test.cob ├── strings.test.cob └── uuid.test.cob ├── region.test.cob ├── server-properties.test.cob └── test.cob /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/README.md -------------------------------------------------------------------------------- /Updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/Updating.md -------------------------------------------------------------------------------- /codegen/_copybooks/DD-CODEGEN-DIR-LIST.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/_copybooks/DD-CODEGEN-DIR-LIST.cpy -------------------------------------------------------------------------------- /codegen/_copybooks/DD-CODEGEN-JSON.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/_copybooks/DD-CODEGEN-JSON.cpy -------------------------------------------------------------------------------- /codegen/_copybooks/DD-CODEGEN-TEMPLATE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/_copybooks/DD-CODEGEN-TEMPLATE.cpy -------------------------------------------------------------------------------- /codegen/codegen.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/codegen.cob -------------------------------------------------------------------------------- /codegen/common/data.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/common/data.cob -------------------------------------------------------------------------------- /codegen/common/optimizer.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/common/optimizer.cob -------------------------------------------------------------------------------- /codegen/common/output.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/common/output.cob -------------------------------------------------------------------------------- /codegen/common/templates.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/common/templates.cob -------------------------------------------------------------------------------- /codegen/common/util.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/common/util.cob -------------------------------------------------------------------------------- /codegen/data/registries.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/data/registries.cob -------------------------------------------------------------------------------- /codegen/generators/blocks_loot_table.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/generators/blocks_loot_table.cob -------------------------------------------------------------------------------- /codegen/generators/items.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/generators/items.cob -------------------------------------------------------------------------------- /codegen/generators/packets.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/generators/packets.cob -------------------------------------------------------------------------------- /codegen/generators/registries.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/generators/registries.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/callback.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/callback.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-any-of.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/condition-any-of.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-block-state-property.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/condition-block-state-property.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-explosion.tpl.cob: -------------------------------------------------------------------------------- 1 | IF LK-SURVIVES-EXPLOSION = 0 2 | MOVE 0 TO COND 3 | END-IF 4 | -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-inverted.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/condition-inverted.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-match-tool.tpl.cob: -------------------------------------------------------------------------------- 1 | MOVE 0 TO COND 2 | -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-random-chance.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/condition-random-chance.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/condition-table-bonus.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/condition-table-bonus.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/entry-alternative.tpl.cob: -------------------------------------------------------------------------------- 1 | IF COND = 0 2 | $child:indent=4$ 3 | END-IF 4 | -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/entry-item.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/entry-item.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/function-explosion-decay.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/function-explosion-decay.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/function-limit-count.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/function-limit-count.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/function-set-count.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/function-set-count.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/main.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/main.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/number-binomial.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/number-binomial.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/number-constant.tpl.cob: -------------------------------------------------------------------------------- 1 | MOVE $value$ TO NUM 2 | -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/number-uniform.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/number-uniform.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/pool.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/blocks_loot_table/pool.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/blocks_loot_table/registration.tpl.cob: -------------------------------------------------------------------------------- 1 | SET CB TO ENTRY "$progid$" 2 | CALL "Register" USING "$block-name$" CB 3 | -------------------------------------------------------------------------------- /codegen/templates/items/main.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/items/main.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/items/registration.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/items/registration.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/packets/direction.tpl.cob: -------------------------------------------------------------------------------- 1 | MOVE $direction$ TO PDIR 2 | $body:newline=after$ 3 | -------------------------------------------------------------------------------- /codegen/templates/packets/main.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/packets/main.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/packets/packet.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/packets/packet.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/packets/state.tpl.cob: -------------------------------------------------------------------------------- 1 | MOVE $state$ TO PSTATE 2 | $body:newline=after$ 3 | -------------------------------------------------------------------------------- /codegen/templates/registries/entry.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/registries/entry.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/registries/main.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/registries/main.tpl.cob -------------------------------------------------------------------------------- /codegen/templates/registries/registry.tpl.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/codegen/templates/registries/registry.tpl.cob -------------------------------------------------------------------------------- /cpp/cobolcraft_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/cpp/cobolcraft_util.cpp -------------------------------------------------------------------------------- /cpp/cobolcraft_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/cpp/cobolcraft_util.h -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/renovate.json -------------------------------------------------------------------------------- /src/_copybooks/assert/ASSERT-FAILED.cpy: -------------------------------------------------------------------------------- 1 | DISPLAY "Assertion failed: " MSG UPON STDERR 2 | STOP RUN RETURNING 1 3 | -------------------------------------------------------------------------------- /src/_copybooks/assert/ASSERT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/assert/ASSERT.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-DESTROY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-DESTROY.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-ALLOCATE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-ALLOCATE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-DESERIALIZE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-DESERIALIZE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-SERIALIZE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ENTITY-SERIALIZE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-FACE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-FACE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-INTERACT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-INTERACT.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ITEM.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-ITEM.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-BLOCK-REPLACEABLE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-BLOCK-REPLACEABLE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-COMMAND-EXECUTE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-COMMAND-EXECUTE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-ENTITY-DESERIALIZE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-ENTITY-DESERIALIZE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-ENTITY-SERIALIZE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-ENTITY-SERIALIZE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-ENTITY-TICK.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-ENTITY-TICK.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-ITEM-USE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-ITEM-USE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-WINDOW-CLOSE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-WINDOW-CLOSE.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-WINDOW-DROP.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-WINDOW-DROP.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-WINDOW-SET-SLOT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-WINDOW-SET-SLOT.cpy -------------------------------------------------------------------------------- /src/_copybooks/callbacks/DD-CALLBACK-WINDOW-SYNC.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/callbacks/DD-CALLBACK-WINDOW-SYNC.cpy -------------------------------------------------------------------------------- /src/_copybooks/constants/DD-CLIENT-STATES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/constants/DD-CLIENT-STATES.cpy -------------------------------------------------------------------------------- /src/_copybooks/constants/DD-COMMAND-CONSTANTS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/constants/DD-COMMAND-CONSTANTS.cpy -------------------------------------------------------------------------------- /src/_copybooks/constants/DD-PACKET-DIRECTIONS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/constants/DD-PACKET-DIRECTIONS.cpy -------------------------------------------------------------------------------- /src/_copybooks/constants/DD-VERSION.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/constants/DD-VERSION.cpy -------------------------------------------------------------------------------- /src/_copybooks/procedures/PROC-PACKET-INIT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/procedures/PROC-PACKET-INIT.cpy -------------------------------------------------------------------------------- /src/_copybooks/procedures/PROC-SKIP-WHITESPACE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/procedures/PROC-SKIP-WHITESPACE.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-BLOCKS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-BLOCKS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-CALLBACKS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-CALLBACKS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-CLIENTS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-CLIENTS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-COMMAND-NODES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-COMMAND-NODES.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-COMMANDS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-COMMANDS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-ITEMS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-ITEMS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-PACKET-HANDLERS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-PACKET-HANDLERS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-PACKET-IDS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-PACKET-IDS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-PLAYERS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-PLAYERS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-RECIPES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-RECIPES.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-REGION-FILES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-REGION-FILES.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-REGISTRIES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-REGISTRIES.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-SERVER-PROPERTIES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-SERVER-PROPERTIES.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-TAGS.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-TAGS.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-WHITELIST.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-WHITELIST.cpy -------------------------------------------------------------------------------- /src/_copybooks/state/DD-WORLD.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/state/DD-WORLD.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-AABB.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-AABB.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-BLOCK-ENTITY-SIGN.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-BLOCK-ENTITY-SIGN.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-BLOCK-ENTITY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-BLOCK-ENTITY.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-BLOCK-STATE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-BLOCK-STATE.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-CHUNK-ENTITY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-CHUNK-ENTITY.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-CHUNK-REF.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-CHUNK-REF.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-ENTITY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-ENTITY.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-INVENTORY-SLOT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-INVENTORY-SLOT.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-NBT-DECODER.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-NBT-DECODER.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-NBT-ENCODER.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-NBT-ENCODER.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-PACKET.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-PACKET.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-REGION-FILE-REF.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-REGION-FILE-REF.cpy -------------------------------------------------------------------------------- /src/_copybooks/structs/DD-SIGN-LINES.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/_copybooks/structs/DD-SIGN-LINES.cpy -------------------------------------------------------------------------------- /src/blockentities/sign.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blockentities/sign.cob -------------------------------------------------------------------------------- /src/blocks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks.cob -------------------------------------------------------------------------------- /src/blocks/air.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/air.cob -------------------------------------------------------------------------------- /src/blocks/bed.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/bed.cob -------------------------------------------------------------------------------- /src/blocks/crafting_table.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/crafting_table.cob -------------------------------------------------------------------------------- /src/blocks/door.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/door.cob -------------------------------------------------------------------------------- /src/blocks/generic.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/generic.cob -------------------------------------------------------------------------------- /src/blocks/lava.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/lava.cob -------------------------------------------------------------------------------- /src/blocks/sign.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/sign.cob -------------------------------------------------------------------------------- /src/blocks/slab.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/slab.cob -------------------------------------------------------------------------------- /src/blocks/tall_grass.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/tall_grass.cob -------------------------------------------------------------------------------- /src/blocks/torch.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/torch.cob -------------------------------------------------------------------------------- /src/blocks/trapdoor.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/trapdoor.cob -------------------------------------------------------------------------------- /src/blocks/water.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/blocks/water.cob -------------------------------------------------------------------------------- /src/callbacks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/callbacks.cob -------------------------------------------------------------------------------- /src/client-chunks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/client-chunks.cob -------------------------------------------------------------------------------- /src/commands.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands.cob -------------------------------------------------------------------------------- /src/commands/gamemode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/gamemode.cob -------------------------------------------------------------------------------- /src/commands/help.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/help.cob -------------------------------------------------------------------------------- /src/commands/kill.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/kill.cob -------------------------------------------------------------------------------- /src/commands/save.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/save.cob -------------------------------------------------------------------------------- /src/commands/say.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/say.cob -------------------------------------------------------------------------------- /src/commands/stop.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/stop.cob -------------------------------------------------------------------------------- /src/commands/time.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/time.cob -------------------------------------------------------------------------------- /src/commands/whitelist.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/commands/whitelist.cob -------------------------------------------------------------------------------- /src/components.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/components.cob -------------------------------------------------------------------------------- /src/datapack.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/datapack.cob -------------------------------------------------------------------------------- /src/encoding/decode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/decode.cob -------------------------------------------------------------------------------- /src/encoding/encode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/encode.cob -------------------------------------------------------------------------------- /src/encoding/json-encode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/json-encode.cob -------------------------------------------------------------------------------- /src/encoding/json-parse.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/json-parse.cob -------------------------------------------------------------------------------- /src/encoding/nbt-decode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/nbt-decode.cob -------------------------------------------------------------------------------- /src/encoding/nbt-encode.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/nbt-encode.cob -------------------------------------------------------------------------------- /src/encoding/strings.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/strings.cob -------------------------------------------------------------------------------- /src/encoding/uuid.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/encoding/uuid.cob -------------------------------------------------------------------------------- /src/entities/base.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/entities/base.cob -------------------------------------------------------------------------------- /src/entities/generic.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/entities/generic.cob -------------------------------------------------------------------------------- /src/entities/item.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/entities/item.cob -------------------------------------------------------------------------------- /src/files.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/files.cob -------------------------------------------------------------------------------- /src/inventory/inventory.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/inventory/inventory.cob -------------------------------------------------------------------------------- /src/inventory/window-crafting.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/inventory/window-crafting.cob -------------------------------------------------------------------------------- /src/inventory/window-player.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/inventory/window-player.cob -------------------------------------------------------------------------------- /src/items.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items.cob -------------------------------------------------------------------------------- /src/items/bed.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/bed.cob -------------------------------------------------------------------------------- /src/items/blocks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/blocks.cob -------------------------------------------------------------------------------- /src/items/bucket.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/bucket.cob -------------------------------------------------------------------------------- /src/items/button.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/button.cob -------------------------------------------------------------------------------- /src/items/common.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/common.cob -------------------------------------------------------------------------------- /src/items/door.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/door.cob -------------------------------------------------------------------------------- /src/items/lava-bucket.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/lava-bucket.cob -------------------------------------------------------------------------------- /src/items/rotated-pillar.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/rotated-pillar.cob -------------------------------------------------------------------------------- /src/items/sign.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/sign.cob -------------------------------------------------------------------------------- /src/items/slab.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/slab.cob -------------------------------------------------------------------------------- /src/items/stairs.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/stairs.cob -------------------------------------------------------------------------------- /src/items/torch.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/torch.cob -------------------------------------------------------------------------------- /src/items/trapdoor.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/trapdoor.cob -------------------------------------------------------------------------------- /src/items/water-bucket.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/items/water-bucket.cob -------------------------------------------------------------------------------- /src/loot-tables.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/loot-tables.cob -------------------------------------------------------------------------------- /src/main.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/main.cob -------------------------------------------------------------------------------- /src/packets.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets.cob -------------------------------------------------------------------------------- /src/packets/clientbound/configuration/feature-flags.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/configuration/feature-flags.cob -------------------------------------------------------------------------------- /src/packets/clientbound/configuration/finish-configuration.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/configuration/finish-configuration.cob -------------------------------------------------------------------------------- /src/packets/clientbound/configuration/known-packs.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/configuration/known-packs.cob -------------------------------------------------------------------------------- /src/packets/clientbound/configuration/registry.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/configuration/registry.cob -------------------------------------------------------------------------------- /src/packets/clientbound/configuration/update-tags.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/configuration/update-tags.cob -------------------------------------------------------------------------------- /src/packets/clientbound/disconnect.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/disconnect.cob -------------------------------------------------------------------------------- /src/packets/clientbound/login/login-success.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/login/login-success.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/ack-block-change.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/ack-block-change.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/add-player.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/add-player.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/block-destruction.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/block-destruction.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/block-entity-data.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/block-entity-data.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/block-update.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/block-update.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/bundle-delimiter.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/bundle-delimiter.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/chunkdata.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/chunkdata.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/commands.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/commands.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/debug-sample.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/debug-sample.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/entity-animation.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/entity-animation.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/entity-event.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/entity-event.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/entity-position-sync.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/entity-position-sync.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/entity-sound.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/entity-sound.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/game-event.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/game-event.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/keepalive.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/keepalive.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/login-play.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/login-play.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/open-screen.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/open-screen.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/open-sign-editor.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/open-sign-editor.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/player-abilities.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/player-abilities.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/player-chat.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/player-chat.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/remove-entity.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/remove-entity.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/remove-player.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/remove-player.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/respawn.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/respawn.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-center-chunk.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-center-chunk.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-container-content.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-container-content.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-entity-metadata.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-entity-metadata.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-equipment.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-equipment.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-experience.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-experience.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-head-rotation.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-head-rotation.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-health.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-health.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-held-item.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-held-item.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/set-player-position.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/set-player-position.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/spawn-entity.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/spawn-entity.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/system-chat.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/system-chat.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/take-item-entity.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/take-item-entity.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/update-time.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/update-time.cob -------------------------------------------------------------------------------- /src/packets/clientbound/play/world-event.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/play/world-event.cob -------------------------------------------------------------------------------- /src/packets/clientbound/plugin-message.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/plugin-message.cob -------------------------------------------------------------------------------- /src/packets/clientbound/status/ping-response.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/status/ping-response.cob -------------------------------------------------------------------------------- /src/packets/clientbound/status/status.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/clientbound/status/status.cob -------------------------------------------------------------------------------- /src/packets/serverbound/configuration/client-information.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/configuration/client-information.cob -------------------------------------------------------------------------------- /src/packets/serverbound/configuration/finish-configuration.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/configuration/finish-configuration.cob -------------------------------------------------------------------------------- /src/packets/serverbound/handshake/intention.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/handshake/intention.cob -------------------------------------------------------------------------------- /src/packets/serverbound/login/hello.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/login/hello.cob -------------------------------------------------------------------------------- /src/packets/serverbound/login/login-acknowledged.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/login/login-acknowledged.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/accept-teleport.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/accept-teleport.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/chat-command.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/chat-command.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/chat.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/chat.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/client-command.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/client-command.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/container-click.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/container-click.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/container-close.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/container-close.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/debug-subscription.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/debug-subscription.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/keepalive.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/keepalive.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/move-player-pos-rot.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/move-player-pos-rot.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/move-player-pos.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/move-player-pos.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/move-player-rot.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/move-player-rot.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/move-player-status.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/move-player-status.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/pick-block.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/pick-block.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/player-abilities.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/player-abilities.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/player-action.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/player-action.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/player-command.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/player-command.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/set-carried-item.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/set-carried-item.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/set-creative-slot.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/set-creative-slot.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/sign-update.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/sign-update.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/swing.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/swing.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/use-item-on.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/use-item-on.cob -------------------------------------------------------------------------------- /src/packets/serverbound/play/use-item.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/play/use-item.cob -------------------------------------------------------------------------------- /src/packets/serverbound/status/ping-request.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/status/ping-request.cob -------------------------------------------------------------------------------- /src/packets/serverbound/status/status-request.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/packets/serverbound/status/status-request.cob -------------------------------------------------------------------------------- /src/parsers/recipe/result.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/parsers/recipe/result.cob -------------------------------------------------------------------------------- /src/parsers/recipe/shaped.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/parsers/recipe/shaped.cob -------------------------------------------------------------------------------- /src/parsers/recipe/shapeless.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/parsers/recipe/shapeless.cob -------------------------------------------------------------------------------- /src/physics.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/physics.cob -------------------------------------------------------------------------------- /src/players/player-io.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/players/player-io.cob -------------------------------------------------------------------------------- /src/players/players.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/players/players.cob -------------------------------------------------------------------------------- /src/region.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/region.cob -------------------------------------------------------------------------------- /src/registries.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/registries.cob -------------------------------------------------------------------------------- /src/server-properties.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/server-properties.cob -------------------------------------------------------------------------------- /src/server.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/server.cob -------------------------------------------------------------------------------- /src/util/chat.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/util/chat.cob -------------------------------------------------------------------------------- /src/util/coordinates.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/util/coordinates.cob -------------------------------------------------------------------------------- /src/whitelist.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/whitelist.cob -------------------------------------------------------------------------------- /src/world/blocks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/blocks.cob -------------------------------------------------------------------------------- /src/world/chunk-io.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/chunk-io.cob -------------------------------------------------------------------------------- /src/world/chunks.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/chunks.cob -------------------------------------------------------------------------------- /src/world/entities.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/entities.cob -------------------------------------------------------------------------------- /src/world/level.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/level.cob -------------------------------------------------------------------------------- /src/world/world.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/src/world/world.cob -------------------------------------------------------------------------------- /tests/_copybooks/TEST-ASSERT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/_copybooks/TEST-ASSERT.cpy -------------------------------------------------------------------------------- /tests/_copybooks/TEST-CASE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/_copybooks/TEST-CASE.cpy -------------------------------------------------------------------------------- /tests/_copybooks/TEST-SKIP.cpy: -------------------------------------------------------------------------------- 1 | DISPLAY "SKIP (" REASON ")" 2 | CALL "TestAssertSkipped". 3 | -------------------------------------------------------------------------------- /tests/_copybooks/TEST-SUITE.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/_copybooks/TEST-SUITE.cpy -------------------------------------------------------------------------------- /tests/_copybooks/TEST-UNIT.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/_copybooks/TEST-UNIT.cpy -------------------------------------------------------------------------------- /tests/cpp.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/cpp.test.cob -------------------------------------------------------------------------------- /tests/encoding/decode.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/decode.test.cob -------------------------------------------------------------------------------- /tests/encoding/encode.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/encode.test.cob -------------------------------------------------------------------------------- /tests/encoding/json-encode.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/json-encode.test.cob -------------------------------------------------------------------------------- /tests/encoding/json-parse.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/json-parse.test.cob -------------------------------------------------------------------------------- /tests/encoding/nbt-decode.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/nbt-decode.test.cob -------------------------------------------------------------------------------- /tests/encoding/nbt-encode.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/nbt-encode.test.cob -------------------------------------------------------------------------------- /tests/encoding/strings.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/strings.test.cob -------------------------------------------------------------------------------- /tests/encoding/uuid.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/encoding/uuid.test.cob -------------------------------------------------------------------------------- /tests/region.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/region.test.cob -------------------------------------------------------------------------------- /tests/server-properties.test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/server-properties.test.cob -------------------------------------------------------------------------------- /tests/test.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyfa/CobolCraft/HEAD/tests/test.cob --------------------------------------------------------------------------------