mirror of
				https://github.com/Klagarge/PokeHES.git
				synced 2025-10-31 03:39:16 +00:00 
			
		
		
		
	convert with lib
This commit is contained in:
		
							
								
								
									
										25
									
								
								src/Entity/Enemy.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								src/Entity/Enemy.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| package Entity; | ||||
|  | ||||
| import com.badlogic.gdx.math.Vector2; | ||||
|  | ||||
| public class Enemy extends Character{ | ||||
|      | ||||
|     public Enemy(String name) { | ||||
|         super(name); | ||||
|     } | ||||
|  | ||||
|     public void setPosition(int x, int y){ | ||||
|  | ||||
|     } | ||||
|  | ||||
|     public void setPosition(Vector2 vPosition){ | ||||
|         setPosition((int)vPosition.x, (int)vPosition.y); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     protected void removedPv(int pv) { | ||||
|         // TODO Auto-generated method stub | ||||
|          | ||||
|     } | ||||
|      | ||||
| } | ||||
		Reference in New Issue
	
	Block a user