Add paramsof.

This commit is contained in:
Christoffer Lerno
2024-09-15 23:43:09 +02:00
parent 06a083bafc
commit 1b5472cc94
14 changed files with 501 additions and 7 deletions

View File

@@ -4,6 +4,12 @@
module std::core::runtime;
import libc, std::time, std::io, std::sort;
struct ReflectedParam @if(!$defined(ReflectedParam))
{
String name;
typeid type;
}
struct AnyRaw
{
void* ptr;