| 123456789101112131415161718192021222324 |
- /******************************************************************************/
- /******************************************************************************/
- class EE1EditRiver : EE1ObjGlobal
- {
- class Vtx
- {
- flt radius;
- Vec pos;
- };
- UID id;
- flt depth;
- Memc<Vtx > vtxs;
- Memc<VecI2> edges;
- Str material;
- bool load(File &f, C Str &name);
- public:
- EE1EditRiver();
- };
- /******************************************************************************/
- /******************************************************************************/
- /******************************************************************************/
|