Compare commits
81 Commits
debug_bogs
...
v0.7.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20bf067e3d | ||
|
|
57ba9dfa69 | ||
|
|
8d4adab240 | ||
|
|
9e799962e9 | ||
|
|
29973a74dd | ||
|
|
8e98805a93 | ||
|
|
72a229a78a | ||
|
|
aefa578004 | ||
|
|
4b75f06987 | ||
|
|
61ec20c775 | ||
|
|
518ada6a82 | ||
|
|
660504ca72 | ||
|
|
f5df781fc9 | ||
|
|
50751390a3 | ||
|
|
a24672a3f1 | ||
|
|
b06c5b9b15 | ||
|
|
7cc2d303ef | ||
|
|
106203d85b | ||
|
|
8b3ac992ce | ||
|
|
1fabb499a9 | ||
|
|
51e63167a0 | ||
|
|
37ef73d9e2 | ||
|
|
b950993852 | ||
|
|
4a2aa90373 | ||
|
|
161f516a98 | ||
|
|
c002405008 | ||
|
|
d4ff63d456 | ||
|
|
e8d0162ceb | ||
|
|
eba387159e | ||
|
|
6006fe1eb5 | ||
|
|
f6559cac31 | ||
|
|
9405ad323a | ||
|
|
b0f9ba9abe | ||
|
|
086fb199cf | ||
|
|
b898cf7f7c | ||
|
|
aacf97e274 | ||
|
|
d58db6efc4 | ||
|
|
4a1c6779cf | ||
|
|
a2caea0a83 | ||
|
|
4209f91d00 | ||
|
|
88f15b9099 | ||
|
|
20ed608523 | ||
|
|
c001532106 | ||
|
|
a8ad00c21c | ||
|
|
079511a30c | ||
|
|
6fce649cbb | ||
|
|
d2c3eb9106 | ||
|
|
53331aef1b | ||
|
|
0570589ecc | ||
|
|
9af062e36e | ||
|
|
9fc23ca1fc | ||
|
|
e509b1d75f | ||
|
|
339c3ee7b2 | ||
|
|
0c3b4bded9 | ||
|
|
c06dba6b7d | ||
|
|
707940aa14 | ||
|
|
bdde9cefba | ||
|
|
26c412f7f1 | ||
|
|
159d977187 | ||
|
|
e33ac42c1c | ||
|
|
76720094c1 | ||
|
|
c4896aaab3 | ||
|
|
bddb3e2a8c | ||
|
|
7f2388904b | ||
|
|
73e8851f27 | ||
|
|
a0f943994f | ||
|
|
518934751b | ||
|
|
36da967dbe | ||
|
|
9812dc6344 | ||
|
|
5daf70e739 | ||
|
|
0a8859b304 | ||
|
|
3cee7e95d2 | ||
|
|
140dd16408 | ||
|
|
9af294932f | ||
|
|
5136a7cab0 | ||
|
|
b41fffee44 | ||
|
|
0212dd6bbc | ||
|
|
d6583a4e33 | ||
|
|
02bfeb5625 | ||
|
|
dc278fb5da | ||
|
|
8d91c7375d |
@@ -4,5 +4,6 @@
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
gen
|
||||
bin
|
||||
.metadata
|
||||
.git
|
||||
@@ -18,7 +18,7 @@
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
|
||||
@@ -1,65 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="40"
|
||||
android:versionName="0.7.1dev"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="17"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
/>
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="43"
|
||||
android:versionName="0.7.2dev"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="28"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.READ_LOGS"/>
|
||||
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
android:theme="@style/AndorsTrailTheme_Blue"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AndorsTrailTheme_Blue.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
||||
37665
AndorsTrail/assets/translation/bg.po
Normal file
37665
AndorsTrail/assets/translation/ca.po
Normal file
37815
AndorsTrail/assets/translation/cs.po
Normal file
37790
AndorsTrail/assets/translation/es.po
Normal file
37660
AndorsTrail/assets/translation/es_AR.po
Normal file
37672
AndorsTrail/assets/translation/fi.po
Executable file
37672
AndorsTrail/assets/translation/gl.po
Executable file
38097
AndorsTrail/assets/translation/hu.po
Normal file
37675
AndorsTrail/assets/translation/id.po
Normal file
37678
AndorsTrail/assets/translation/ko.po
Normal file
37674
AndorsTrail/assets/translation/ms.po
Normal file
37665
AndorsTrail/assets/translation/nb.po
Normal file
37675
AndorsTrail/assets/translation/nl.po
Normal file
37665
AndorsTrail/assets/translation/pa.po
Normal file
10
AndorsTrail/assets/translation/reformatPo.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
for i in *.po
|
||||
do
|
||||
echo "$i"
|
||||
msgmerge --no-fuzzy-matching "${i}" english.pot \
|
||||
| msgattrib --translated \
|
||||
| msguniq --no-wrap --sort-by-file >"${i}.tmp1"
|
||||
mv "${i}.tmp1" "$i"
|
||||
done
|
||||
37675
AndorsTrail/assets/translation/sl.po
Normal file
37674
AndorsTrail/assets/translation/sv.po
Executable file
37672
AndorsTrail/assets/translation/th.po
Normal file
37755
AndorsTrail/assets/translation/tr.po
Normal file
37736
AndorsTrail/assets/translation/uk.po
Normal file
37701
AndorsTrail/assets/translation/zh_CN.po
Normal file
37674
AndorsTrail/assets/translation/zh_TW.po
Normal file
@@ -8,4 +8,4 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-17
|
||||
target=android-28
|
||||
|
||||
8
AndorsTrail/res/anim/hidemonsterconditionbar.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromYDelta="0%"
|
||||
android:toYDelta="-100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
8
AndorsTrail/res/anim/hidemonsterconditionbutton.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromXDelta="0%"
|
||||
android:toXDelta="100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
9
AndorsTrail/res/anim/showmonsterconditionbar.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromYDelta="-100%"
|
||||
android:toYDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
9
AndorsTrail/res/anim/showmonsterconditionbutton.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
8
AndorsTrail/res/color/ui_blue_textbutton_textcolor.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="true" android:state_pressed="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:state_checked="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
<item android:state_enabled="false" android:color="@color/ui_blue_palette_text_gray_darker"/>
|
||||
<item android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
</selector>
|
||||
BIN
AndorsTrail/res/drawable-nodpi/ts_background.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_01.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_02.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_03.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_04.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_m_01.png
Normal file
|
After Width: | Height: | Size: 734 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_m_02.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_01.png
Normal file
|
After Width: | Height: | Size: 587 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_02.png
Normal file
|
After Width: | Height: | Size: 379 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_03.png
Normal file
|
After Width: | Height: | Size: 515 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_foreground.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_midground.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_sky_gradient_x6.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
AndorsTrail/res/drawable-xhdpi/icon.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
AndorsTrail/res/drawable-xxhdpi/icon.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
AndorsTrail/res/drawable/actorconditions_japozero.png
Normal file
|
After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.3 KiB |
BIN
AndorsTrail/res/drawable/char_hero_large.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_boy_01.png
Executable file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_boy_01_large.png
Executable file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_girl_01.png
Executable file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_girl_01_large.png
Executable file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
AndorsTrail/res/drawable/effect_miss1.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
AndorsTrail/res/drawable/items_japozero.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
AndorsTrail/res/drawable/items_rijackson_1.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
22
AndorsTrail/res/drawable/loading_anim.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:oneshot="false">
|
||||
|
||||
<item android:drawable="@drawable/loading_anim_00"
|
||||
android:duration="150" />
|
||||
<item android:drawable="@drawable/loading_anim_01"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_02"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_03"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_04"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_05"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_06"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_00"
|
||||
android:duration="150" />
|
||||
|
||||
</animation-list>
|
||||
BIN
AndorsTrail/res/drawable/loading_anim_00.png
Normal file
|
After Width: | Height: | Size: 538 B |
BIN
AndorsTrail/res/drawable/loading_anim_01.png
Normal file
|
After Width: | Height: | Size: 602 B |
BIN
AndorsTrail/res/drawable/loading_anim_02.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
AndorsTrail/res/drawable/loading_anim_03.png
Normal file
|
After Width: | Height: | Size: 604 B |
BIN
AndorsTrail/res/drawable/loading_anim_04.png
Normal file
|
After Width: | Height: | Size: 516 B |
BIN
AndorsTrail/res/drawable/loading_anim_05.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
AndorsTrail/res/drawable/loading_anim_06.png
Normal file
|
After Width: | Height: | Size: 567 B |
BIN
AndorsTrail/res/drawable/logo_anim_shine_00.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_01.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_02.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_03.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_04.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_05.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_06.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_07.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_08.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_09.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 166 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 117 KiB |
BIN
AndorsTrail/res/drawable/map_bridge_2.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 187 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 160 KiB |
BIN
AndorsTrail/res/drawable/map_cavewall_4.png
Normal file
|
After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 164 KiB |
BIN
AndorsTrail/res/drawable/map_chair_table_2.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 129 KiB |
BIN
AndorsTrail/res/drawable/map_dynamic_placeholders.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 100 KiB |
BIN
AndorsTrail/res/drawable/map_entrance_2.png
Normal file
|
After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 84 KiB |