Not working

This commit is contained in:
Matthias Heil
2026-04-07 12:21:37 +02:00
parent 8038c76307
commit 7b4bbd28a1
9 changed files with 28 additions and 28 deletions
+1 -13
View File
@@ -3,20 +3,8 @@ using System.Numerics;
using System.Threading.Tasks;
namespace NamedPipes;
[Serializable]
public struct Frame(Vector3 translation, Quaternion orientation)
{
public Vector3 Translation => translation;
public Quaternion Orientation => orientation;
}
[Serializable]
public class DebugObject
{
public string? Type { get; set; }
public byte[]? Data { get; set; }
}
public interface IDebugVisualizer
{
Task<bool> SetDebugObjectAsync(DebugObject debugObject);
Task<bool> SetVisualizerModelAsync(VisualizerModel visualizerModel);
Task<bool> SetMessageAsync(string message);
}