Search found 3 matches

by Zenon
Tue Feb 05, 2008 7:52 pm
Forum: Beginners Help
Topic: compiling from svn with codeblocks
Replies: 1
Views: 128

compiling from svn with codeblocks

hi

just tried to compile irrlicht with codeblocks and gcc under winxp;
but when i open the cb project included it is completely empty;
well, except ECullingTypes.h in Headers/Include;
do i have to add everything on my own or am i missing something ?
by Zenon
Thu Oct 11, 2007 5:07 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: (C++) HOW TO: use .irr scene + a game manager Class
Replies: 19
Views: 15449

thanks that works; next time i should open my eyes and read precisely first; sry
by Zenon
Thu Oct 11, 2007 4:46 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: (C++) HOW TO: use .irr scene + a game manager Class
Replies: 19
Views: 15449

hi,

while trying to copy your design for my app i ran into a problem;
this is what it looks like at the moment;

the MainGame header:

#include <irrlicht.h>
#include "Core.h"
#include "EventReceiver.h"

namespace NS {
class MainGame{
public:
MainGame();
~MainGame();
void run();
protected ...