lyra-wasm-scripting-test/guests/csharp/dotnet-guest-test/LyraApi/Ecs/IComponent.cs

14 lines
398 B
C#
Raw Normal View History

using System.Data.SqlTypes;
using ExampleWorld.wit.imports.lyra.api;
namespace LyraApi.Ecs;
public interface IComponent
{
public abstract static string HostName { get; }
public abstract static ulong HostSize { get; }
public abstract static ulong HostAlignment { get; }
public abstract static ulong TypeId { get; }
public abstract static object? TakeFromBytes(byte[] bytes);
}