13 lines
253 B
C#
13 lines
253 B
C#
using Godot;
|
|
|
|
public class Placeholder
|
|
{
|
|
public string name;
|
|
public Vector3 pos;
|
|
|
|
public Placeholder(string name, Vector3 pos){
|
|
this.name = name;
|
|
this.pos = pos;
|
|
GD.Print($"Generated placeholder {this.name}");
|
|
}
|
|
} |