Hi, I want to store a pointer to a type within another type but cant figure out where I'm going wrong. Also when I have the pointer to the type, how do I access fields in the type that the pointer points to?
Thanks
Type TProperties Field Weight:Int Field force:Int Field material:Int Field move:Int Field state:Int EndType Type TTest Field test:TProperties Ptr EndType Local Newprop :TProperties Newprop = New TProperties Local Newtest :TTest Newtest = New TTest newtest.test=TProperties(Newprop)
Thanks