diff options
Diffstat (limited to 'source/Irrlicht/CGUIModalScreen.cpp')
-rw-r--r-- | source/Irrlicht/CGUIModalScreen.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source/Irrlicht/CGUIModalScreen.cpp b/source/Irrlicht/CGUIModalScreen.cpp index 66f769e..ce8b32e 100644 --- a/source/Irrlicht/CGUIModalScreen.cpp +++ b/source/Irrlicht/CGUIModalScreen.cpp @@ -230,24 +230,6 @@ void CGUIModalScreen::updateAbsolutePosition() IGUIElement::updateAbsolutePosition();
}
-
-//! Writes attributes of the element.
-void CGUIModalScreen::serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const
-{
- IGUIElement::serializeAttributes(out,options);
-
- out->addInt("BlinkMode", BlinkMode );
-}
-
-//! Reads attributes of the element
-void CGUIModalScreen::deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0)
-{
- IGUIElement::deserializeAttributes(in, options);
-
- BlinkMode = in->getAttributeAsInt("BlinkMode", BlinkMode);
-}
-
-
} // end namespace gui
} // end namespace irr
|