diff options
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 |