0
How to make any game in c language
Any game make in c
2 Réponses
+ 3
With a lot of time and effort.
It depends on the game that is being made, libraries used. Perhaps you may find an all C game engine.
- The question is very vague. The description is also inexplicit.
0
Create a linked-list to hold game objects.
Create object class
Properties: X, Y, Z, volX, volY, volZ, texture, wireframe, hieght, width.
Create class wireframe.
Properly linked-list wireframeNode.
Create class wireframeNode.
/* to adjust player volocity(volX, voly, volZ). */
Create function imputDetect
/*the below should loop over objects*/
Create function physics
Create functions render.
Loop{
imputDetect();
physics();
render();
}