diff options
author | RaindropsSys <contact@minteck.org> | 2023-08-31 21:00:30 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-08-31 21:00:30 +0200 |
commit | e54ac640f1d3f7071a48032e924b04529cbd358f (patch) | |
tree | 91efa742451921231e0695a5b5c99a1c4fac19f9 /src/blocks.py | |
download | blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.tar.gz blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.tar.bz2 blocks-e54ac640f1d3f7071a48032e924b04529cbd358f.zip |
Initial commit
Diffstat (limited to 'src/blocks.py')
-rw-r--r-- | src/blocks.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/blocks.py b/src/blocks.py new file mode 100644 index 0000000..ffdf461 --- /dev/null +++ b/src/blocks.py @@ -0,0 +1,10 @@ +blocks = { + "grass_block": { + "texture": 0, + "sounds": ("grass", "grass") + }, + "stone": { + "texture": 3, + "sounds": ("stone", "stone") + } +}
\ No newline at end of file |