From 75b77ad650d04bc06af6aef378e6bda43f61263c Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Fri, 27 Aug 2004 13:38:39 +0000 Subject: [PATCH] Added a command to get the vector of the lines of text. --- stepmania/src/BitmapText.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/BitmapText.h b/stepmania/src/BitmapText.h index 0759c035a0..65f82d0ebd 100644 --- a/stepmania/src/BitmapText.h +++ b/stepmania/src/BitmapText.h @@ -31,6 +31,8 @@ public: void SetHorizAlign( HorizAlign ha ); void SetVertAlign( VertAlign va ); + void GetLines( vector &wTextLines ) { wTextLines = m_wTextLines; } + CString GetText() const { return m_sText; } /* Return true if the string 's' will use an alternate string, if available. */ bool StringWillUseAlternate(CString sText, CString sAlternateText) const;