source: anuga_work/development/anugavis/src/libanugavis/height_quantity.h @ 5220

Last change on this file since 5220 was 5220, checked in by jack, 16 years ago

anugavis: Started work on simple height quantities.

File size: 249 bytes
Line 
1#ifndef HEIGHT_QUANTITY_H
2#define HEIGHT_QUANTITY_H
3
4#include <SDL.h>
5
6struct height_quantity_simple{
7  char *name;
8  uint8_t dynamic;
9  double offset;
10  double scale;
11  Uint32 color;
12  struct height_quantity_simple *next;
13};
14
15#endif
Note: See TracBrowser for help on using the repository browser.