12 lines
211 B
C#
12 lines
211 B
C#
using Godot;
|
|
|
|
public class Placeholder
|
|
{
|
|
public string name;
|
|
public Vector3 pos;
|
|
|
|
public Placeholder(string name, Vector3 pos){
|
|
this.name = name.Split("_")[0];
|
|
this.pos = pos;
|
|
}
|
|
} |