Climb Home: Fix game getting stuck when player reaches home
What now happens if a player reaches home:
- sndWinning
- Show caption with finishing time
- Winning hog is teleported to roof and can be seen by everyone
- 4 second delay
- If there are still hogs left, the game continues normally
- Each victory is mentioned in stats screen at the end
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/button_focused" />
<item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/button_focused_disabled" />
<item android:state_focused="false" android:state_enabled="true" android:drawable="@drawable/button_normal" />
<item android:state_focused="false" android:state_enabled="false" android:drawable="@drawable/button_disabled" />
</selector>