mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-11-13 00:55:55 +08:00
18 lines
340 B
C#
18 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public readonly struct proto
|
|
{
|
|
private readonly ent entity;
|
|
}
|
|
}
|
|
|