Ordered files and folders a bit
This commit is contained in:
parent
b3f762ca3c
commit
296ec9c821
12
GamePlay/Entities/Entity.java
Normal file
12
GamePlay/Entities/Entity.java
Normal file
@ -0,0 +1,12 @@
|
||||
package Entities;
|
||||
|
||||
/**
|
||||
* Entity class, which is the main class regrouping characters and projectiles
|
||||
* @author Victor
|
||||
*
|
||||
*/
|
||||
public class Entity {
|
||||
private int posx;
|
||||
private int posy;
|
||||
private .Frame currentFrame = new Entityframe();
|
||||
}
|
14
GamePlay/Frames/Frame.java
Normal file
14
GamePlay/Frames/Frame.java
Normal file
@ -0,0 +1,14 @@
|
||||
package Frames;
|
||||
/**
|
||||
* Main class for frames
|
||||
* @author Victor Azra
|
||||
*
|
||||
*/
|
||||
public class Frame {
|
||||
|
||||
//TODO: to implement
|
||||
|
||||
public Frame() {
|
||||
//TODO : to implement
|
||||
}
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class Active_HitBox extends HitBox {
|
||||
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class Active_throw_Hitbox extends HitBox {
|
||||
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class HitBox {
|
||||
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class Passive_HitBox extends HitBox {
|
||||
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class Passive_throw_HitBox extends HitBox {
|
||||
|
@ -1,3 +1,4 @@
|
||||
package Hitboxes;
|
||||
|
||||
public class Push_HitBox extends HitBox {
|
||||
|
@ -19,6 +19,9 @@ public class match {
|
||||
private int hpP1, hpP2;
|
||||
private int roundsWonP1, roundsWonP2;
|
||||
|
||||
/**
|
||||
* base constructor of the match class
|
||||
*/
|
||||
public match() {
|
||||
this.timer = 99;
|
||||
this.inputsP1 = new input.InputBuffer(inputBufferSize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user