danyalzia / DIrrlicht

D Bindings of Irrlicht Engine
Other
7 stars 1 forks source link

Take decision on parts that should have interface #5

Open danyalzia opened 10 years ago

danyalzia commented 10 years ago

Irrlicht separates the implementation and interface. The advantage of it is that almost everything can be implemented by inheriting those virtual classes and use those within Irrlicht. This enables the user to create new video drivers (Direct3D11 etc), scene nodes, gui elements etc without modifying Irrlicht or DIrrlicht. Currently we only have SceneNode as an interface.

The motivation is that DIrrlicht should be made a stand-alone replacement of Irrlicht which doesn't require Irrlicht for implementations.