Commit 80efea55 authored by hybrid's avatar hybrid

Oops, wrong copy'n'paste. Fixed to pure virtual

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4542 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 00f8f8a8
...@@ -21,7 +21,7 @@ public: ...@@ -21,7 +21,7 @@ public:
virtual void setPoint( const core::vector3df& point ) = 0; virtual void setPoint( const core::vector3df& point ) = 0;
//! Set the speed, in game units per second that the particles will attract to the specified point //! Set the speed, in game units per second that the particles will attract to the specified point
virtual void setSpeed( f32 speed ) { Speed = speed; } virtual void setSpeed( f32 speed ) =0;
//! Set whether or not the particles are attracting or detracting //! Set whether or not the particles are attracting or detracting
virtual void setAttract( bool attract ) = 0; virtual void setAttract( bool attract ) = 0;
...@@ -39,7 +39,7 @@ public: ...@@ -39,7 +39,7 @@ public:
virtual const core::vector3df& getPoint() const = 0; virtual const core::vector3df& getPoint() const = 0;
//! Get the speed that points attract to the specified point //! Get the speed that points attract to the specified point
virtual f32 getSpeed() const { return Speed; } virtual f32 getSpeed() const =0;
//! Get whether or not the particles are attracting or detracting //! Get whether or not the particles are attracting or detracting
virtual bool getAttract() const = 0; virtual bool getAttract() const = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment