From 0044da1ca2f02c62898a8097e1ec85a516b21cf7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 9 Oct 2023 19:20:44 +0200 Subject: [PATCH] added missing VMFunction struct definition --- wadsrc/static/zscript/engine/base.zs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wadsrc/static/zscript/engine/base.zs b/wadsrc/static/zscript/engine/base.zs index dd9813ae6..6b78ead56 100644 --- a/wadsrc/static/zscript/engine/base.zs +++ b/wadsrc/static/zscript/engine/base.zs @@ -934,3 +934,8 @@ struct QuatStruct native // native double LengthSquared(); // native Quat Unit(); } + +// this struct does not exist. It is just a type for being referenced by an opaque pointer. +struct VMFunction native version("4.10") +{ +}