Initial check in.

This commit is contained in:
2013-04-21 23:46:09 +04:00
commit dbaf5b4720
111 changed files with 2290 additions and 0 deletions

BIN
res/drawable/splash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

18
res/layout/menu.xml Normal file
View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/splash"
>
<Button
android:id="@+id/btn_start"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onStartCurrentPuzzle"
android:text="Start" />
</LinearLayout>

BIN
res/raw/puzzles.bin Normal file

Binary file not shown.

6
res/values/strings.xml Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Free Sokoban</string>
<string name="menu">Menu</string>
<string name="play_activity">play_activity</string>
</resources>