From 988ea482c41532c41e3b73b2ff81aa7911e50d08 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Mon, 16 Dec 2024 06:01:13 -0500 Subject: [PATCH] enemy data class --- src/Data.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/Data.cs diff --git a/src/Data.cs b/src/Data.cs new file mode 100644 index 0000000..e641558 --- /dev/null +++ b/src/Data.cs @@ -0,0 +1,26 @@ +using StereoKit; +using System.Collections.Generic; + +namespace slash; + +public static class Data +{ + +} + +public class Enemy +{ + public Pose pose; + + public string col_ref; + public List cols; + + + public Enemy(string col_ref) + { + this.pose = new(); + + this.col_ref = col_ref; + this.cols = new(); + } +} \ No newline at end of file