diff --git a/src/headers/parsing/ParseComponents.hpp b/src/headers/parsing/ParseComponents.hpp index a40aad0..6ee3e41 100644 --- a/src/headers/parsing/ParseComponents.hpp +++ b/src/headers/parsing/ParseComponents.hpp @@ -36,12 +36,11 @@ namespace StandardComponents { // Shorthand for Define(false) Define(): Define(false) {} }; - struct Constructor: ParseComponent {}; - struct ClassBody: ParseComponent {}; struct Class: ParseComponent { - string bullshitText; + struct Constructor {}; + string name; Constructor constructor; - explicit Class(string_view text): bullshitText(text) {} + explicit Class(string_view text): name(text) {} }; namespace types { struct String: ParseComponent {