lnvis

nanovg lightning network visualizer
git clone git://jb55.com/lnvis
Log | Files | Refs | README | LICENSE

grid.h (206B)


      1 
      2 #ifndef LNVIS_GRID_H
      3 #define LNVIS_GRID_H
      4 
      5 
      6 #include "ln.h"
      7 
      8 struct cell {
      9 	struct node *nodes[CELL_MAX_ELEMS];
     10 	int node_count;
     11 };
     12 
     13 void update_grid_move_nodes(struct ln *ln);
     14 
     15 
     16 #endif /* LNVIS_GRID_H */