Object Types

From WinBolo

(Difference between revisions)
Jump to: navigation, search

Sticks (Talk | contribs)
(initial creation)
Next diff →

Revision as of 04:41, 8 May 2009

Contents

Object Data Types

netmt.h

netMNTObj

typedef struct netMNTObj *netMnt;
struct netMNTObj {
  netMnt next;  /* Next item */ 
  BYTE item;    /* Value of this item */
  BYTE owner;   /* Who owns this anyway */
  BYTE id;      /* Item ID */
  BYTE x;       /* Item location */
  BYTE y;
};

netMntContextObj

typedef struct netMntContextObj *netMntContext;
struct netMntContextObj {
  netMnt nmt;
  BYTE netMntUpto;
};

netpnb.h

netPNBObj

typedef struct netPNBObj *netPnb;
struct netPNBObj {
  netPnb next;  /* Next item               */ 
  BYTE item;    /* Value of this item      */
  BYTE owner;   /* Owner of this event     */
  BYTE id;      /* Item Id                 */
  BYTE x;       /* Item X & Y Co-ordinates */
  BYTE y;
  BYTE opt;
};

netPnbContextObj

typedef struct netPnbContextObj *netPnbContext;
struct netPnbContextObj {
  netPnb pnb;
  BYTE netPnbUpto;
};
Personal tools