forked from vanZeben/2D-Game-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
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
crimsonFuckr
committed
Mar 16, 2014
1 parent
21e26cf
commit 4ff5f7c
Showing
23 changed files
with
76 additions
and
76 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
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/GameLauncher.java → src/com/andrewh/game/GameLauncher.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,4 +1,4 @@ | ||
package ca.vanzeben.game; | ||
package com.andrewh.game; | ||
|
||
import java.applet.Applet; | ||
import java.awt.BorderLayout; | ||
|
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/InputHandler.java → src/com/andrewh/game/InputHandler.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
4 changes: 2 additions & 2 deletions
4
src/ca/vanzeben/game/WindowHandler.java → src/com/andrewh/game/WindowHandler.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
6 changes: 3 additions & 3 deletions
6
src/ca/vanzeben/game/entities/Entity.java → src/com/andrewh/game/entities/Entity.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
6 changes: 3 additions & 3 deletions
6
src/ca/vanzeben/game/entities/Mob.java → src/com/andrewh/game/entities/Mob.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
16 changes: 8 additions & 8 deletions
16
src/ca/vanzeben/game/entities/Player.java → src/com/andrewh/game/entities/Player.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
6 changes: 3 additions & 3 deletions
6
src/ca/vanzeben/game/entities/PlayerMP.java → src/com/andrewh/game/entities/PlayerMP.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
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/gfx/Colours.java → src/com/andrewh/game/gfx/Colours.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,4 +1,4 @@ | ||
package ca.vanzeben.game.gfx; | ||
package com.andrewh.game.gfx; | ||
|
||
public class Colours { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/gfx/Font.java → src/com/andrewh/game/gfx/Font.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,4 +1,4 @@ | ||
package ca.vanzeben.game.gfx; | ||
package com.andrewh.game.gfx; | ||
|
||
public class Font { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/gfx/Screen.java → src/com/andrewh/game/gfx/Screen.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,4 +1,4 @@ | ||
package ca.vanzeben.game.gfx; | ||
package com.andrewh.game.gfx; | ||
|
||
public class Screen { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/ca/vanzeben/game/gfx/SpriteSheet.java → src/com/andrewh/game/gfx/SpriteSheet.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
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
2 changes: 1 addition & 1 deletion
2
...nzeben/game/level/tiles/AnimatedTile.java → ...ndrewh/game/level/tiles/AnimatedTile.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
2 changes: 1 addition & 1 deletion
2
...eben/game/level/tiles/BasicSolidTile.java → ...rewh/game/level/tiles/BasicSolidTile.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
6 changes: 3 additions & 3 deletions
6
.../vanzeben/game/level/tiles/BasicTile.java → ...m/andrewh/game/level/tiles/BasicTile.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
8 changes: 4 additions & 4 deletions
8
src/ca/vanzeben/game/level/tiles/Tile.java → src/com/andrewh/game/level/tiles/Tile.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
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
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
6 changes: 3 additions & 3 deletions
6
src/ca/vanzeben/game/net/packets/Packet.java → src/com/andrewh/game/net/packets/Packet.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
6 changes: 3 additions & 3 deletions
6
...zeben/game/net/packets/Packet00Login.java → ...drewh/game/net/packets/Packet00Login.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
6 changes: 3 additions & 3 deletions
6
.../game/net/packets/Packet01Disconnect.java → .../game/net/packets/Packet01Disconnect.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
6 changes: 3 additions & 3 deletions
6
...nzeben/game/net/packets/Packet02Move.java → ...ndrewh/game/net/packets/Packet02Move.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