Tag Archives: C++

C++ source code

Create your GUID with Visual Studio Express 2013 .

The file called AssemblyInfo.cs contains information about your program and provides properties for getting the information about the application, such as the version number, description, loaded assemblies. This is just a simple example and you can read the docs from MSDN docs.

When you create the project you will find this file on Solution… Read More »

Writing a basic game with C++ and OpenGL libs – part 001.

This is a first part tutorial about Linux game using C++ and OpenGL libs. Writing a C++ game can be difficult. You will need to focus on program structure and then to know how to create the necessary classes. Let’s see the files I used:

The main.cpp file is the main program. This file… Read More »