Compare commits
24 Commits
Author | SHA1 | Date |
---|---|---|
|
c3528a3548 | 2 years ago |
|
eb5fd9bab2 | 2 years ago |
|
c51e919273 | 2 years ago |
|
af54bac13c | 2 years ago |
|
81330bee02 | 2 years ago |
|
2668786a1b | 2 years ago |
|
5c2c00b06c | 2 years ago |
|
f91f51ace0 | 2 years ago |
|
fc28ef9f20 | 2 years ago |
|
c77b9f075d | 2 years ago |
|
a6ff185823 | 2 years ago |
|
b8da110ee7 | 2 years ago |
|
1899c1ebcf | 2 years ago |
|
b8f366b5e4 | 2 years ago |
|
87e3218f37 | 2 years ago |
|
7e3d31ee8f | 2 years ago |
|
75c1fbc013 | 2 years ago |
|
2e2ddbab05 | 2 years ago |
|
2c4c4ee4c6 | 2 years ago |
|
e151db0a08 | 2 years ago |
|
8b4d3783cd | 2 years ago |
|
ab634e669b | 2 years ago |
|
d61679804b | 2 years ago |
|
1f6d31bbdf | 2 years ago |
@ -1 +0,0 @@
|
||||
FileType.java
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +0,0 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello world!");
|
||||
}
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
package assembly;
|
||||
|
||||
public class Branch {
|
||||
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package assembly;
|
||||
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
public class Trigger {
|
||||
int Mouse;
|
||||
MouseEvent mouse;
|
||||
public void mouseClicked(MouseEvent arg0){
|
||||
if(arg0.getButton() == MouseEvent.BUTTON1){
|
||||
Mouse = 1;
|
||||
} else if (arg0.getButton() == MouseEvent.BUTTON2) {
|
||||
Mouse = 2;
|
||||
} else if (arg0.getButton() == MouseEvent.BUTTON3) {
|
||||
Mouse = 3;
|
||||
}
|
||||
}
|
||||
public int getMouse(){
|
||||
mouseClicked(mouse);
|
||||
return Mouse;
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
package compound;
|
||||
|
||||
public class Backgroud {
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
package compound;
|
||||
|
||||
public class Bgm {
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package compound;
|
||||
|
||||
import assembly.Trigger;
|
||||
|
||||
public class Character {
|
||||
int NowPattern = 0;
|
||||
int Pattern[] = new int[100];
|
||||
static int i = 0;
|
||||
Character(int Character_Group[]){
|
||||
Pattern = Character_Group;
|
||||
}
|
||||
public void Show(){
|
||||
//将改代号的图片输出
|
||||
}
|
||||
public void nextPattern(){
|
||||
Trigger trigger = new Trigger();
|
||||
if(trigger.getMouse() == 1) {
|
||||
NowPattern = Pattern[i];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
package compound;
|
||||
|
||||
import assembly.Trigger;
|
||||
|
||||
public class Text {
|
||||
int i = 0;
|
||||
String TextBox[] = new String[100];
|
||||
Text(){
|
||||
//将资源中的文本分段输入TextBox中
|
||||
}
|
||||
public void nextText(){
|
||||
Trigger trigger = new Trigger();
|
||||
if(trigger.getMouse() == 1) {
|
||||
//输出下一句textbox到文本
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue