From f9158592e1478b2013afc7041d9ed041cf2d2f4a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 13 Jan 2014 19:47:58 +1000 Subject: Update Irrlicht to 1.8.1. Include actual change markers this time. lol --- .../doc/html/_s_particle_8h_source.html | 166 --------------------- 1 file changed, 166 deletions(-) delete mode 100644 libraries/irrlicht-1.8/doc/html/_s_particle_8h_source.html (limited to 'libraries/irrlicht-1.8/doc/html/_s_particle_8h_source.html') diff --git a/libraries/irrlicht-1.8/doc/html/_s_particle_8h_source.html b/libraries/irrlicht-1.8/doc/html/_s_particle_8h_source.html deleted file mode 100644 index 57de474..0000000 --- a/libraries/irrlicht-1.8/doc/html/_s_particle_8h_source.html +++ /dev/null @@ -1,166 +0,0 @@ - - -
- -00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt -00002 // This file is part of the "Irrlicht Engine". -00003 // For conditions of distribution and use, see copyright notice in irrlicht.h -00004 -00005 #ifndef __S_PARTICLE_H_INCLUDED__ -00006 #define __S_PARTICLE_H_INCLUDED__ -00007 -00008 #include "vector3d.h" -00009 #include "dimension2d.h" -00010 #include "SColor.h" -00011 -00012 namespace irr -00013 { -00014 namespace scene -00015 { -00017 struct SParticle -00018 { -00020 core::vector3df pos; -00021 -00023 core::vector3df vector; -00024 -00026 u32 startTime; -00027 -00029 u32 endTime; -00030 -00032 video::SColor color; -00033 -00035 -00036 video::SColor startColor; -00037 -00039 -00040 core::vector3df startVector; -00041 -00043 -00044 core::dimension2df size; -00045 -00047 -00048 core::dimension2df startSize; -00049 }; -00050 -00051 -00052 } // end namespace scene -00053 } // end namespace irr -00054 -00055 #endif -00056 -