-
Notifications
You must be signed in to change notification settings - Fork 0
/
pencereKontrolu.pde
49 lines (37 loc) · 1.04 KB
/
pencereKontrolu.pde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class pencereKontrolu{
int z=9;
pencere aktifPencere;
pencereKontrolu(){
aktifPencere=new anaPencere(this);
}
void draw(){
aktifPencere.draw();
}
void keyPressed(){
// println("pencere kontrol kısmında başarılı bir çalışma");
aktifPencere.keyPressed();
}// fonksiyon sonu
void keyPressed(int x){
// println("pencere kontrol kısmında başarılı bir çalışma");
aktifPencere.keyPressed(x);
}// fonksiyon sonu
void keyReleased(int x){
// println("pencere kontrol kısmında başarılı bir çalışma");
aktifPencere.keyReleased(x);
}// fonksiyon sonu
void mousePressed(){
aktifPencere.mousePressed();
}// fonksiyon sonu
void mousePressed(int x, int y){
aktifPencere.mousePressed(x,y);
}// fonksiyon sonu
void mouseMoved(int x, int y){
aktifPencere.mouseMoved(x,y);
}// fonksiyon sonu
void mouseReleased(int x, int y){
aktifPencere.mouseReleased(x,y);
}// fonksiyon sonu
void mouseDragged(int x, int y){
aktifPencere.mouseDragged(x,y);
}// fonksiyon sonu
}//sınıf sonu