10 lines
231 B
C
10 lines
231 B
C
|
#ifndef DUST3D_TRIANGLE_ISLANDS_LINK_H
|
||
|
#define DUST3D_TRIANGLE_ISLANDS_LINK_H
|
||
|
#include <vector>
|
||
|
#include "outcome.h"
|
||
|
|
||
|
void triangleIslandsLink(const Outcome &outcome,
|
||
|
std::vector<std::pair<size_t, size_t>> &links);
|
||
|
|
||
|
#endif
|