-
Notifications
You must be signed in to change notification settings - Fork 259
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
4 changed files
with
28 additions
and
27 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
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 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"app-release.apk","properties":{"packageId":"com.hurteng.stormplane","split":"","minSdkVersion":"16"}}] |
52 changes: 26 additions & 26 deletions
52
app/src/main/java/com/hurteng/stormplane/constant/ConstantUtil.java
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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
package com.hurteng.stormplane.constant; | ||
|
||
public class ConstantUtil { | ||
// 物品的方向常量 | ||
public static int DIR_LEFT_UP = 1; | ||
public static int DIR_RIGHT_UP = 2; | ||
public static int DIR_LEFT_DOWN = 3; | ||
public static int DIR_RIGHT_DOWN = 4; | ||
public static int DIR_LEFT = 5; | ||
public static int DIR_RIGHT = 6; | ||
public static int TO_MAIN_VIEW = 7; | ||
public static int TO_END_VIEW = 8; | ||
public static int END_GAME = 9; | ||
public interface ConstantUtil { | ||
// 物品的方向常量 | ||
int DIR_LEFT_UP = 1; | ||
int DIR_RIGHT_UP = 2; | ||
int DIR_LEFT_DOWN = 3; | ||
int DIR_RIGHT_DOWN = 4; | ||
int DIR_LEFT = 5; | ||
int DIR_RIGHT = 6; | ||
int TO_MAIN_VIEW = 7; | ||
int TO_END_VIEW = 8; | ||
int END_GAME = 9; | ||
|
||
int DIR_UP = 10; | ||
int DIR_DOWN = 11; | ||
int DIR_TEMP = 12; | ||
|
||
// 我方子弹类型 | ||
int MYBULLET = 100; | ||
int MYBULLET1 = 101; | ||
int MYBULLET2 = 102; | ||
|
||
// boss子弹类型 | ||
int BOSSBULLET_DEFAULT = 110; | ||
int BOSSBULLET_ANGER = 111; | ||
int BOSSBULLET_CRAZY = 112; | ||
int BOSSBULLET_LIMIT = 113; | ||
|
||
public static final int DIR_UP = 10; | ||
public static final int DIR_DOWN = 11; | ||
public static final int DIR_TEMP = 12; | ||
|
||
//我方子弹类型 | ||
public static int MYBULLET = 100; | ||
public static int MYBULLET1 = 101; | ||
public static int MYBULLET2 = 102; | ||
|
||
//boss子弹类型 | ||
public static int BOSSBULLET_DEFAULT = 110; | ||
public static int BOSSBULLET_ANGER = 111; | ||
public static int BOSSBULLET_CRAZY = 112; | ||
public static int BOSSBULLET_LIMIT = 113; | ||
|
||
} |