Lfant
A small Game Engine project.
Lfant is a small (so far) 3D game engine, rendered using OpenGL. It will be primarily aimed toward action games, but able to conform to other genres. The code uses an Entity-Component model, a bit like Unity3D, where Entities have a list of Components that they can access at any given time. These components "add" functionality to the owner Entity (albeit not directly). Examples of Components are Rigidbody, HeatTransfer, Inventory, MeshRenderer, ParticleSystem. The intent of use for this system...