Is there a way to have a pointer that points to a custom type? E.g.:
Type MyType
Field a:Int
Field b:Float
EndType
MyVar:MyType
MyTypePointer:MyType Ptr = Varptr(MyType)
Type MyType
Field a:Int
Field b:Float
EndType
MyVar:MyType
MyTypePointer:MyType Ptr = Varptr(MyType)