26 lines
No EOL
337 B
C#
26 lines
No EOL
337 B
C#
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();
|
|
}
|
|
} |