How to make any game in c language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make any game in c language

Any game make in c

27th Sep 2019, 4:50 PM
Nihal
Nihal - avatar
2 Answers
+ 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.
27th Sep 2019, 5:08 PM
Manual
Manual - avatar
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(); }
27th Sep 2019, 5:03 PM
josh mizzi
josh mizzi - avatar