]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Menu.h
added type description of MenuProperties
[l2e.git] / src / graphics / Menu.h
index 175a7114501afcd4ad1e75bfb61115c8b790f28c..7aa2e9448794754d57024e36e16252bbba6f0389 100644 (file)
@@ -43,6 +43,8 @@ struct MenuProperties {
 
        MenuProperties(const Font *font, const Font *disabledFont, const Sprite *cursor, int charsPerEntry, int rows, int rowGap, int iconSpace, int cols, int colGap, int charsPerNumber, char delimiter, int charsPerAdditionalText, int additionalTextGap)
        : font(font), disabledFont(disabledFont), cursor(cursor), charsPerEntry(charsPerEntry), rows(rows), rowGap(rowGap), iconSpace(iconSpace), cols(cols), colGap(colGap), charsPerNumber(charsPerNumber), charsPerAdditionalText(charsPerAdditionalText), additionalTextGap(additionalTextGap), delimiter(delimiter) { }
+
+       static void CreateTypeDescription();
 };
 
 template<class T>