Finished part 2.4

This commit is contained in:
Christopher Sanden
2025-10-13 17:41:37 +02:00
parent b74fadfd27
commit 4fd5b87bb6
7 changed files with 237 additions and 0 deletions

View File

@@ -27,6 +27,12 @@ public:
head = nullptr;
}
void PushFront(TMovie* m) const
{
auto* n = new TMovieNode(m);
n->SetNextNode(head->GetNextNode());
head->SetNextNode(n);
}
};