From f4e84d99afbad381aed3a0ac977335a820ececc6 Mon Sep 17 00:00:00 2001 From: Kevin Caccamo Date: Wed, 23 Jun 2021 15:54:32 -0400 Subject: [PATCH] Remove documentation for dynamic arrays --- wadsrc/static/zscript/engine/base.zs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/wadsrc/static/zscript/engine/base.zs b/wadsrc/static/zscript/engine/base.zs index 7347300f6..250cda95a 100644 --- a/wadsrc/static/zscript/engine/base.zs +++ b/wadsrc/static/zscript/engine/base.zs @@ -168,13 +168,6 @@ struct Vector3 // The cross product of two vectors can be calculated like this: // Vector3 d = a cross b; } - -// See https://zdoom.org/wiki/Dynamic_arrays for more details -struct Array -{ - native int Size(); - native void Copy(Array other); -} */ struct _ native // These are the global variables, the struct is only here to avoid extending the parser for this.