Tagged Questions
1
vote
1answer
155 views
Game Engine Collision Handler
I'm making a collision handler for a Java game engine. I made an interface called Collidable. I have a method called onCollision which takes the parameter of my Engine Game Object.
public void ...
7
votes
1answer
491 views
Separating logic and data in browser game
I've been thinking this over for days and I'm still not sure what to do. I'm trying to refactor a combat system in PHP (...sorry.) Here's what exists so far:
There are two (so far) types of entities ...
-1
votes
1answer
238 views
When should one use the Abstract, Implements, or extends keywords? [closed]
I'm just now moving from a beginner to intermediate level android programmer in the java language. i can successfully write a game framework of classes that work together to accomplish a task beyond ...