/* Irrlicht Library Wrapper Created by: Nathan Adams Copyright (C) 2008 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #ifndef IRRPHYSICS_H #define IRRPHYSICS_H /* We should include some basic functions */ #include /* include strings */ #include #include /* We have to include Irrlichts libs */ #include #include //#include "IrrLib.h" #include "IrrLibBase.h" class IrrPhysics: public IrrLibBase { //private: public: static NewtonWorld *nworld; IrrPhysics(); ~IrrPhysics(); }; #endif