diff --git a/examples/index.ts b/examples/index.ts
index 1708e6e..3eaec45 100644
--- a/examples/index.ts
+++ b/examples/index.ts
@@ -48,3 +48,8 @@ const swallowtailAttackArrow = document.getElementById('drawSwallowtailAttackArr
swallowtailAttackArrow.onclick = () => {
new CesiumPlot.SwallowtailAttackArrow(Cesium, viewer, {});
};
+
+const squadCombat = document.getElementById('drawSquadCombat') as HTMLElement;
+squadCombat.onclick = () => {
+ new CesiumPlot.SquadCombat(Cesium, viewer, {});
+};
diff --git a/index.html b/index.html
index fe84942..344aa9d 100644
--- a/index.html
+++ b/index.html
@@ -42,6 +42,7 @@
+