summaryrefslogtreecommitdiff
path: root/ProjectileHitSpawn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ProjectileHitSpawn.cs')
-rw-r--r--ProjectileHitSpawn.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/ProjectileHitSpawn.cs b/ProjectileHitSpawn.cs
new file mode 100644
index 0000000..8a1df24
--- /dev/null
+++ b/ProjectileHitSpawn.cs
@@ -0,0 +1,18 @@
+using System;
+using UnityEngine;
+
+[Serializable]
+public class ProjectileHitSpawn
+{
+ public enum SpawnRotation
+ {
+ normal,
+ forward
+ }
+
+ public GameObject spawnedObject;
+
+ public SpawnRotation groundSpawnRotation;
+
+ public SpawnRotation playerSpawnRotation;
+}