enemy data class
This commit is contained in:
parent
db09cb5495
commit
988ea482c4
1 changed files with 26 additions and 0 deletions
26
src/Data.cs
Normal file
26
src/Data.cs
Normal file
|
@ -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<Sphere> cols;
|
||||||
|
|
||||||
|
|
||||||
|
public Enemy(string col_ref)
|
||||||
|
{
|
||||||
|
this.pose = new();
|
||||||
|
|
||||||
|
this.col_ref = col_ref;
|
||||||
|
this.cols = new();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue