00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include <iostream>
00013 #include <irrlicht.h>
00014 #include <strings.h>
00015
00016 #include "IrrLib.h"
00017
00018
00019 #include "IrrColor.h"
00020 #include "IrrSprite.h"
00021
00022
00023 using namespace irr;
00024 using namespace core;
00025 using namespace scene;
00026 using namespace video;
00027 using namespace io;
00028 using namespace gui;
00029
00030 using namespace std;
00031
00032 IrrSprite::IrrSprite()
00033 {
00034
00035 }
00036
00037 IrrSprite::~IrrSprite()
00038 {
00039
00040 }
00041
00042 IrrSprite::LoadSpriteSheet(stringc file)
00043 {
00044 video::ITexture* spritesheet = driver->getTexture(file.c_str());
00045 }
00046
00047
00048
00049
00050
00051
00052
00053
00054