-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
127 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
8 | ||
weapon 320 320hud1 80 120 80 20 | ||
weapon_s 320 320hud1 80 140 80 20 | ||
ammo 320 320hud2 0 34 18 18 | ||
crosshair 320 crosshairs 72 48 24 24 | ||
weapon 640 640hud2 0 135 170 45 | ||
weapon_s 640 640hud5 0 135 170 45 | ||
ammo 640 640hud7 0 96 24 24 | ||
crosshair 640 crosshairs 72 48 24 24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package in.celest.xash3d; | ||
import android.content.BroadcastReceiver; | ||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.util.Log; | ||
|
||
public class InstallReceiver extends BroadcastReceiver { | ||
private static final String TAG = "MOD_LAUNCHER"; | ||
@Override | ||
public void onReceive(Context context, Intent arg1) { | ||
Log.d( TAG, "Install received, extracting PAK" ); | ||
LauncherActivity.extractPAK( context, true ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters