#ifndef GRAFFITI_BUFFER_H
#define GRAFFITI_BUFFER_H

#ifndef EXEC_TYPES_H
#   include <exec/types.h>
#endif
#ifndef GRAFFITI_INTERN_H
#   include "graffiti_intern.h"
#endif

struct GraffitiBuffer
{
    struct MinNode Node;
    UWORD   Left;
    UWORD   Top;
    UWORD   Width;
    UWORD   Height;
    UWORD   BPR;
    UWORD   pad0;
    UBYTE * Plane[4];
};

#endif /* GRAFFITI_BUFFER_H */
