started implementing linked lists

This commit is contained in:
aap
2016-01-11 11:23:26 +01:00
parent 0aadf8c3c9
commit efd41771a0
10 changed files with 188 additions and 150 deletions

View File

@@ -31,6 +31,7 @@ TexDictionary *currentTexDictionary;
TexDictionary::TexDictionary(void)
{
this->object.init(6, 0);
this->first = NULL;
}