Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "leveldb/src/main/cpp/leveldb-mcpe"]
[submodule "leveldb-mcpe"]
path = leveldb/src/main/cpp/leveldb-mcpe
url = https://github.com/Mojang/leveldb-mcpe.git
url = git@github.com:Mojang/leveldb-mcpe
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ By *Proto Lambda*\(Link removed, as he asked to\), [@MithrilMania](https://githu
[@flagmaggot](https://github.com/flagmaggot) and many other community contributors, including translation.
This fork is the only one supporting MCPE 1.13+ for now.

## ![translate](https://github.com/Templarian/MaterialDesign/blob/master/svg/web.svg) Help improve translation
[Click here](https://github.com/oO0oO0oO0o0o00/blocktopograph/blob/master/translation.md).
## Redirection
Update is currently paused due to several difficulties (including sections below). The current active fork is now https://github.com/NguyenDuck/blocktopograph

## Update paused
As title.

Translations and pull requests **will still be processed**, but we encourage you to
take over this project and develope on your own.
Translations and pull requests are encouraged to be made to the active forks instead of this one.

## ![download](https://github.com/Templarian/MaterialDesign/blob/master/svg/download.svg)Download
[>>> Download on Google Play <<<](https://play.google.com/store/apps/details?id=rbq2012.blocktopograph)
Expand Down
18 changes: 1 addition & 17 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,3 @@
#TODO

- Translations/Localization
- MCPE 0.16 blocks + 1.0 blocks!!!
- new entities, block entities
- new icons
- unit tests
- testing!


#extra:

- multithreading of the individual chunks of each tile, with a thread-pool.
- optimizing the top down rendering with lazy chunk loading (from the right direction, stopping when opaque)

#important

- firebase cleanup (remove config, new key)
- google big query!
- new blocks
79 changes: 50 additions & 29 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
//apply plugin: 'com.guardsquare.proguard'
//apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'

android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
applicationId 'rbq2012.blocktopograph'
minSdkVersion 16
minSdkVersion 26
targetSdkVersion 29
versionCode 1090005
versionName "1.9.3"
versionCode 1090007
versionName "1.9.5"
vectorDrawables.useSupportLibrary = true
}

dataBinding {
enabled true
}
Expand All @@ -20,51 +23,69 @@ android {
buildTypes {

debug {
minifyEnabled false
firebaseCrashlytics {
mappingFileUploadEnabled false
}
postprocessing {
removeUnusedCode true
obfuscate false
optimizeCode true
proguardFile 'proguard-rules.pro'
}
//multiDexEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
ext.alwaysUpdateBuildId = false
}

release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
firebaseCrashlytics {
mappingFileUploadEnabled false
}
postprocessing {
removeUnusedCode true
obfuscate false
optimizeCode true
proguardFile 'proguard-rules.pro'
}
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}

dependencies {
implementation fileTree(include: ['*.jar', '*.so', '*.aar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'com.google.firebase:firebase-crashlytics:18.2.1'
implementation 'com.google.firebase:firebase-analytics:19.0.0'
testImplementation 'junit:junit:4.13.2'
implementation project(':leveldb')
implementation project(':tileview')
implementation 'com.github.clans:fab:1.6.4'
implementation 'com.github.bmelnychuk:atv:1.2.8'
implementation 'com.github.woxthebox:draglistview:1.6.3'
implementation 'com.github.bmelnychuk:atv:1.2.9'
implementation 'com.github.woxthebox:draglistview:1.7.2'
implementation 'com.andreabaccega:android-edittext-validator:1.3.5'
//core is the new recommended alias for analytics
implementation 'com.google.firebase:firebase-core:17.2.2'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'com.google.firebase:firebase-core:19.0.0'
//implementation 'org.jetbrains:annotations-java5:15.0'
implementation 'com.tomergoldst.android:tooltips:1.0.10'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation 'com.tomergoldst.android:tooltips:1.1.0'
implementation 'androidx.annotation:annotation:1.2.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
//implementation 'com.github.MikeOrtiz:TouchImageView:2.1.1'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'com.github.florent37:expansionpanel:1.2.2'
implementation 'com.jbvincey:nestedradiobutton:1.0'
implementation 'net.lingala.zip4j:zip4j:2.3.1'
implementation 'commons-io:commons-io:2.4'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'com.github.florent37:expansionpanel:1.2.4'
implementation 'com.github.jbvincey:nestedradiobutton:1.1'
implementation 'net.lingala.zip4j:zip4j:2.9.0'
// do NOT accidentally "up"-grade to the 2003 version
//noinspection GradleDependency
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
//debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.1'
implementation 'com.google.guava:guava:30.1.1-jre'
}

apply plugin: 'com.google.gms.google-services'
Binary file added app/src/main/assets/blocks/anvil_base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/anvil_top_damaged_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/anvil_top_damaged_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/anvil_top_damaged_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/beacon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_feet_end.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_feet_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_feet_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_head_end.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_head_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bed_head_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bedrock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/beetroots_stage_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/beetroots_stage_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/beetroots_stage_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/beetroots_stage_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/bookshelf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/border.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/brewing_stand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/brewing_stand_base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/brick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/build_allow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/build_deny.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/cactus_bottom.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/cactus_side.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/cactus_top.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/cake_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/cake_inner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/assets/blocks/cake_side.png
Binary file added app/src/main/assets/blocks/cake_top.png
Binary file added app/src/main/assets/blocks/camera_back.png
Binary file added app/src/main/assets/blocks/camera_front.png
Binary file added app/src/main/assets/blocks/camera_side.png
Binary file added app/src/main/assets/blocks/camera_top.png
Binary file added app/src/main/assets/blocks/carried_waterlily.png
Binary file added app/src/main/assets/blocks/carrots_stage_0.png
Binary file added app/src/main/assets/blocks/carrots_stage_1.png
Binary file added app/src/main/assets/blocks/carrots_stage_2.png
Binary file added app/src/main/assets/blocks/carrots_stage_3.png
Binary file added app/src/main/assets/blocks/cauldron_bottom.png
Binary file added app/src/main/assets/blocks/cauldron_inner.png
Binary file added app/src/main/assets/blocks/cauldron_side.png
Binary file added app/src/main/assets/blocks/cauldron_top.png
Binary file added app/src/main/assets/blocks/cauldron_water.png
Binary file added app/src/main/assets/blocks/chest_front.png
Binary file added app/src/main/assets/blocks/chest_side.png
Binary file added app/src/main/assets/blocks/chest_top.png
Binary file added app/src/main/assets/blocks/chorus_flower.png
Binary file added app/src/main/assets/blocks/chorus_flower_dead.png
Binary file added app/src/main/assets/blocks/chorus_plant.png
Binary file added app/src/main/assets/blocks/clay.png
Binary file added app/src/main/assets/blocks/coal_block.png
Binary file added app/src/main/assets/blocks/coal_ore.png
Binary file added app/src/main/assets/blocks/cobblestone.png
Binary file added app/src/main/assets/blocks/cobblestone_mossy.png
Binary file added app/src/main/assets/blocks/cocoa_stage_0.png
Binary file added app/src/main/assets/blocks/cocoa_stage_1.png
Binary file added app/src/main/assets/blocks/cocoa_stage_2.png
Binary file added app/src/main/assets/blocks/command_block.png
Binary file added app/src/main/assets/blocks/comparator_off.png
Binary file added app/src/main/assets/blocks/comparator_on.png
Binary file added app/src/main/assets/blocks/crafting_table_front.png
Binary file added app/src/main/assets/blocks/crafting_table_side.png
Binary file added app/src/main/assets/blocks/crafting_table_top.png
Binary file added app/src/main/assets/blocks/daylight_detector_top.png
Binary file added app/src/main/assets/blocks/deadbush.png
Binary file added app/src/main/assets/blocks/diamond_block.png
Binary file added app/src/main/assets/blocks/diamond_ore.png
Binary file added app/src/main/assets/blocks/dirt.png
Binary file added app/src/main/assets/blocks/dirt_podzol_side.png
Binary file added app/src/main/assets/blocks/dirt_podzol_top.png
Binary file added app/src/main/assets/blocks/door_acacia_lower.png
Binary file added app/src/main/assets/blocks/door_acacia_upper.png
Binary file added app/src/main/assets/blocks/door_birch_lower.png
Binary file added app/src/main/assets/blocks/door_birch_upper.png
Binary file added app/src/main/assets/blocks/door_dark_oak_lower.png
Binary file added app/src/main/assets/blocks/door_dark_oak_upper.png
Binary file added app/src/main/assets/blocks/door_iron_lower.png
Binary file added app/src/main/assets/blocks/door_iron_upper.png
Binary file added app/src/main/assets/blocks/door_jungle_lower.png
Binary file added app/src/main/assets/blocks/door_jungle_upper.png
Binary file added app/src/main/assets/blocks/door_spruce_lower.png
Binary file added app/src/main/assets/blocks/door_spruce_upper.png
Binary file added app/src/main/assets/blocks/door_wood_lower.png
Binary file added app/src/main/assets/blocks/door_wood_upper.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/double_plant_rose_top.png
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/dragon_egg.png
Binary file added app/src/main/assets/blocks/emerald_block.png
Binary file added app/src/main/assets/blocks/emerald_ore.png
Binary file added app/src/main/assets/blocks/enchanting_table_side.png
Binary file added app/src/main/assets/blocks/enchanting_table_top.png
Binary file added app/src/main/assets/blocks/end_bricks.png
Binary file added app/src/main/assets/blocks/end_rod.png
Binary file added app/src/main/assets/blocks/end_stone.png
Binary file added app/src/main/assets/blocks/ender_chest_front.png
Binary file added app/src/main/assets/blocks/ender_chest_side.png
Binary file added app/src/main/assets/blocks/ender_chest_top.png
Binary file added app/src/main/assets/blocks/endframe_eye.png
Binary file added app/src/main/assets/blocks/endframe_side.png
Binary file added app/src/main/assets/blocks/endframe_top.png
Binary file added app/src/main/assets/blocks/farmland_dry.png
Binary file added app/src/main/assets/blocks/farmland_wet.png
Binary file added app/src/main/assets/blocks/fern.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/fern_carried.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/fire_0.png
Binary file added app/src/main/assets/blocks/fire_1.png
Binary file added app/src/main/assets/blocks/flower_allium.png
Binary file added app/src/main/assets/blocks/flower_blue_orchid.png
Binary file added app/src/main/assets/blocks/flower_dandelion.png
Binary file added app/src/main/assets/blocks/flower_houstonia.png
Binary file added app/src/main/assets/blocks/flower_oxeye_daisy.png
Binary file added app/src/main/assets/blocks/flower_paeonia.png
Binary file added app/src/main/assets/blocks/flower_pot.png
Binary file added app/src/main/assets/blocks/flower_rose.png
Binary file added app/src/main/assets/blocks/flower_rose_blue.png
Binary file added app/src/main/assets/blocks/flower_tulip_orange.png
Binary file added app/src/main/assets/blocks/flower_tulip_pink.png
Binary file added app/src/main/assets/blocks/flower_tulip_red.png
Binary file added app/src/main/assets/blocks/flower_tulip_white.png
Binary file added app/src/main/assets/blocks/furnace_front_off.png
Binary file added app/src/main/assets/blocks/furnace_front_on.png
Binary file added app/src/main/assets/blocks/furnace_side.png
Binary file added app/src/main/assets/blocks/furnace_top.png
Binary file added app/src/main/assets/blocks/glass.png
Binary file added app/src/main/assets/blocks/glass_pane_top.png
Binary file added app/src/main/assets/blocks/glowing_obsidian.png
Binary file added app/src/main/assets/blocks/glowstone.png
Binary file added app/src/main/assets/blocks/gold_block.png
Binary file added app/src/main/assets/blocks/gold_ore.png
Binary file added app/src/main/assets/blocks/grass_carried.png
Binary file added app/src/main/assets/blocks/grass_path_side.png
Binary file added app/src/main/assets/blocks/grass_path_top.png
Binary file added app/src/main/assets/blocks/grass_side.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/grass_side_carried.png
Binary file added app/src/main/assets/blocks/grass_side_snowed.png
Binary file added app/src/main/assets/blocks/grass_side_snowed.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/grass_top.png
Binary file added app/src/main/assets/blocks/gravel.png
Binary file added app/src/main/assets/blocks/hardened_clay.png
Binary file added app/src/main/assets/blocks/hay_block_side.png
Binary file added app/src/main/assets/blocks/hay_block_top.png
Binary file added app/src/main/assets/blocks/hopper_inside.png
Binary file added app/src/main/assets/blocks/hopper_outside.png
Binary file added app/src/main/assets/blocks/hopper_top.png
Binary file added app/src/main/assets/blocks/ice.png
Binary file added app/src/main/assets/blocks/ice_packed.png
Binary file added app/src/main/assets/blocks/iron_bars.png
Binary file added app/src/main/assets/blocks/iron_block.png
Binary file added app/src/main/assets/blocks/iron_ore.png
Binary file added app/src/main/assets/blocks/iron_trapdoor.png
Binary file added app/src/main/assets/blocks/itemframe_background.png
Binary file added app/src/main/assets/blocks/jukebox_side.png
Binary file added app/src/main/assets/blocks/jukebox_top.png
Binary file added app/src/main/assets/blocks/ladder.png
Binary file added app/src/main/assets/blocks/lapis_block.png
Binary file added app/src/main/assets/blocks/lapis_ore.png
Binary file added app/src/main/assets/blocks/lava_flow.png
Binary file added app/src/main/assets/blocks/lava_still.png
Binary file added app/src/main/assets/blocks/leaves_acacia.tga
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_acacia_opaque.png
Binary file added app/src/main/assets/blocks/leaves_big_oak.tga
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_big_oak_opaque.png
Binary file added app/src/main/assets/blocks/leaves_birch.tga
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_birch_opaque.png
Binary file added app/src/main/assets/blocks/leaves_jungle.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_jungle_carried.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_jungle_opaque.png
Binary file added app/src/main/assets/blocks/leaves_oak.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_oak_carried.tga
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_oak_opaque.png
Binary file added app/src/main/assets/blocks/leaves_spruce.tga
Binary file not shown.
Binary file not shown.
Binary file added app/src/main/assets/blocks/leaves_spruce_opaque.png
Binary file added app/src/main/assets/blocks/lever.png
Binary file added app/src/main/assets/blocks/log_acacia.png
Binary file added app/src/main/assets/blocks/log_acacia_top.png
Binary file added app/src/main/assets/blocks/log_big_oak.png
Binary file added app/src/main/assets/blocks/log_big_oak_top.png
Binary file added app/src/main/assets/blocks/log_birch.png
Binary file added app/src/main/assets/blocks/log_birch_top.png
Binary file added app/src/main/assets/blocks/log_jungle.png
Binary file added app/src/main/assets/blocks/log_jungle_top.png
Binary file added app/src/main/assets/blocks/log_oak.png
Binary file added app/src/main/assets/blocks/log_oak_top.png
Binary file added app/src/main/assets/blocks/log_spruce.png
Binary file added app/src/main/assets/blocks/log_spruce_top.png
Binary file added app/src/main/assets/blocks/melon_side.png
Binary file added app/src/main/assets/blocks/melon_stem_connected.png
Binary file added app/src/main/assets/blocks/melon_top.png
Binary file added app/src/main/assets/blocks/missing_tile.png
Binary file added app/src/main/assets/blocks/mob_spawner.png
Binary file added app/src/main/assets/blocks/mushroom_block_inside.png
Binary file added app/src/main/assets/blocks/mushroom_brown.png
Binary file added app/src/main/assets/blocks/mushroom_red.png
Binary file added app/src/main/assets/blocks/mycelium_side.png
Binary file added app/src/main/assets/blocks/mycelium_top.png
Binary file added app/src/main/assets/blocks/nether_brick.png
Binary file added app/src/main/assets/blocks/nether_wart_stage_0.png
Binary file added app/src/main/assets/blocks/nether_wart_stage_1.png
Binary file added app/src/main/assets/blocks/nether_wart_stage_2.png
Binary file added app/src/main/assets/blocks/netherrack.png
Binary file added app/src/main/assets/blocks/noteblock.png
Binary file added app/src/main/assets/blocks/observer_back.png
Binary file added app/src/main/assets/blocks/observer_front.png
Binary file added app/src/main/assets/blocks/observer_side.png
Binary file added app/src/main/assets/blocks/observer_top.png
Binary file added app/src/main/assets/blocks/obsidian.png
Binary file added app/src/main/assets/blocks/piston_bottom.png
Binary file added app/src/main/assets/blocks/piston_inner.png
Binary file added app/src/main/assets/blocks/piston_side.png
Binary file added app/src/main/assets/blocks/piston_top_normal.png
Binary file added app/src/main/assets/blocks/piston_top_sticky.png
Binary file added app/src/main/assets/blocks/planks_acacia.png
Binary file added app/src/main/assets/blocks/planks_big_oak.png
Binary file added app/src/main/assets/blocks/planks_birch.png
Binary file added app/src/main/assets/blocks/planks_jungle.png
Binary file added app/src/main/assets/blocks/planks_oak.png
Binary file added app/src/main/assets/blocks/planks_spruce.png
Binary file added app/src/main/assets/blocks/portal.png
Binary file added app/src/main/assets/blocks/potatoes_stage_0.png
Binary file added app/src/main/assets/blocks/potatoes_stage_1.png
Binary file added app/src/main/assets/blocks/potatoes_stage_2.png
Binary file added app/src/main/assets/blocks/potatoes_stage_3.png
Binary file added app/src/main/assets/blocks/prismarine_bricks.png
Binary file added app/src/main/assets/blocks/prismarine_dark.png
Binary file added app/src/main/assets/blocks/prismarine_rough.png
Binary file added app/src/main/assets/blocks/pumpkin_face_off.png
Binary file added app/src/main/assets/blocks/pumpkin_face_on.png
Binary file added app/src/main/assets/blocks/pumpkin_side.png
Binary file added app/src/main/assets/blocks/pumpkin_top.png
Binary file added app/src/main/assets/blocks/purpur_block.png
Binary file added app/src/main/assets/blocks/purpur_pillar.png
Binary file added app/src/main/assets/blocks/purpur_pillar_top.png
Binary file added app/src/main/assets/blocks/quartz_block_bottom.png
Binary file added app/src/main/assets/blocks/quartz_block_chiseled.png
Binary file added app/src/main/assets/blocks/quartz_block_lines.png
Binary file added app/src/main/assets/blocks/quartz_block_side.png
Binary file added app/src/main/assets/blocks/quartz_block_top.png
Binary file added app/src/main/assets/blocks/quartz_ore.png
Binary file added app/src/main/assets/blocks/rail_activator.png
Binary file added app/src/main/assets/blocks/rail_detector.png
Binary file added app/src/main/assets/blocks/rail_detector_powered.png
Binary file added app/src/main/assets/blocks/rail_golden.png
Binary file added app/src/main/assets/blocks/rail_golden_powered.png
Binary file added app/src/main/assets/blocks/rail_normal.png
Binary file added app/src/main/assets/blocks/rail_normal_turned.png
Loading