X-Git-Url: https://www.kengrimes.com/gitweb/?p=henge%2Fwebcc.git;a=blobdiff_plain;f=src%2Fapc%2Fir.h;fp=src%2Fapc%2Fir.h;h=79832848366d1d140143b3d6b8ccfe136abdc178;hp=53b1d65c075399a176df24b0156e8c94d0b5489b;hb=7ec466e900542295260ac7e414b5a409acf2a61a;hpb=fa38ef709a26d67ca4dd56dfd1f4f0108897a701 diff --git a/src/apc/ir.h b/src/apc/ir.h index 53b1d65..7983284 100644 --- a/src/apc/ir.h +++ b/src/apc/ir.h @@ -109,22 +109,17 @@ struct vlink { char anim_name[32]; }; -/* Olinks are links to odats */ -struct olink { - uint64_t ref_id; -}; - union link_t { - struct olink olink; struct vlink vlink; struct svlink svlink; }; -/* From: Some odat ()To: Another odat (ref_id)*/ +/* From: src odat ()To: dest odat (ref_id)*/ struct link { int type; //1 = olink, 2 = vlink, 3 = svlink union link_t link_t; struct cdat* classp; + struct odat* odatp; int set_idx; int ele_idx; };