Java game coding for beginners: Learn to make games using the Java programming language.
By the end of the tenth quick tutorial you will be ready to take on your first game projects. Coding in Java allows you to make games that will run on all the desktop operating systems like Windows, OSX and Linux but also it is the native language for making games for all Android devices.
Handling game data with Java arrays
All these objects and variables are useful but what happens when we have hundreds or thousands of them? How can we possibly keep track? Java arrays are the solution and in this quick tutorial, we […]
Managing simultaneous events with Threads
So what is a thread? You can think of threads in Java programming in the same way you do threads in a story. In one thread of a story, we have the primary character battling […]
Using Java Interfaces
As the title of the tutorial suggests we will be using interfaces. Interfaces are a special type of class and we already know how to create classes. However, we will not be creating any of […]