24-07-2006, 01:45 PM
I actually did it like this, which looks cleaner in my mind :p:
Code:
Type FriendRec
Name as string * Name_Length
End Type
Type PlayerRec
Friends(1 to MAX_FRIENDS) as FriendRec
End Type
