fix potential memory leak

This commit is contained in:
A-lex-Ra 2023-12-18 19:10:30 +06:00
parent 6830205bcc
commit 667a90b724

View File

@ -62,6 +62,7 @@ Content::Content(ContentIndices* indices, DrawGroups* drawGroups,
Content::~Content() {
delete indices;
delete drawGroups;
}
Block* Content::findBlock(string id) const {