@EE1EditRiver.h 679 B

123456789101112131415161718192021222324
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class EE1EditRiver : EE1ObjGlobal
  4. {
  5. class Vtx
  6. {
  7. flt radius;
  8. Vec pos;
  9. };
  10. UID id;
  11. flt depth;
  12. Memc<Vtx > vtxs;
  13. Memc<VecI2> edges;
  14. Str material;
  15. bool load(File &f, C Str &name);
  16. public:
  17. EE1EditRiver();
  18. };
  19. /******************************************************************************/
  20. /******************************************************************************/
  21. /******************************************************************************/