Tag: Programming languages
Configuring the Game Development Environment for UFO Tap Attack
The first steps to becoming an Android game programmer is configuring your development environment on your PC. There are more steps than visiting the Android website and downloading an installation […]
Optimize by Variable Organization (Packing Data)
Most of us when we are writing code either do not think of how we organize our variable declarations or will organize the variable declarations into readable and logical groups. […]
Parsing Blender 3D Files *.blend – (1 of 3)
Blender 3D is a modeling software used to develop animated films, video games, etc. The software application is open source and free to download and to use. This makes the […]
Parsing Blender 3D Files *.blend – (2 of 3) Blender Objects
This article is the second part of Parsing Blender 3D Files. If you have not read the first article of this series please do so to get a full understanding […]
Parsing Blender 3D Files *.blend – (3 of 3) Linking Blender Objects and Components
This article is the third part of Parsing Blender 3D Files. If you have not read the first and second articles of this series, please do so to get a […]
C++ Enumerations
An enumeration is a data type with a set of named variable values that is defined by the programmer. The strength behind enumerations is the ability to name a set […]
C++ Singleton
A singleton is a design pattern that will allow only one instance of the object to exist during the execution of the program. The singleton is instantiated the first time […]