2023-08-16 08:17:33 +00:00
|
|
|
import FineArrow from './arrow/fine-arrow';
|
|
|
|
import AttackArrow from './arrow/attack-arrow';
|
2023-08-18 02:23:52 +00:00
|
|
|
import SwallowtailAttackArrow from './arrow/swallowtail-attack-arrow';
|
2023-08-18 03:42:30 +00:00
|
|
|
import SquadCombat from './arrow/squad-combat';
|
2023-08-21 02:35:03 +00:00
|
|
|
import SwallowtailSquadCombat from './arrow/swallowtail-squad-combat';
|
2023-08-21 05:47:28 +00:00
|
|
|
import StraightArrow from './arrow/straight-arrow';
|
2023-08-21 10:02:00 +00:00
|
|
|
import CurvedArrow from './arrow/curved-arrow';
|
2023-08-21 06:40:37 +00:00
|
|
|
import AssaultDirection from './arrow/assault-direction';
|
2023-08-22 06:19:21 +00:00
|
|
|
import DoubleArrow from './arrow/double-arrow';
|
2023-08-22 07:21:28 +00:00
|
|
|
import FreehandLine from './line/freehand-line';
|
2023-08-16 08:17:33 +00:00
|
|
|
|
|
|
|
const CesiumPlot = {
|
|
|
|
FineArrow,
|
|
|
|
AttackArrow,
|
2023-08-18 02:23:52 +00:00
|
|
|
SwallowtailAttackArrow,
|
2023-08-18 03:42:30 +00:00
|
|
|
SquadCombat,
|
2023-08-21 02:35:03 +00:00
|
|
|
SwallowtailSquadCombat,
|
2023-08-21 05:47:28 +00:00
|
|
|
StraightArrow,
|
2023-08-21 10:02:00 +00:00
|
|
|
CurvedArrow,
|
2023-08-21 06:40:37 +00:00
|
|
|
AssaultDirection,
|
2023-08-22 06:19:21 +00:00
|
|
|
DoubleArrow,
|
2023-08-22 07:21:28 +00:00
|
|
|
FreehandLine,
|
2023-08-16 08:17:33 +00:00
|
|
|
};
|
2023-08-09 09:55:29 +00:00
|
|
|
|
|
|
|
export default CesiumPlot;
|