From aa312cbc3b183126b07b89b361ffbed08a19612f Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Tue, 11 Jan 2022 22:39:13 -0500 Subject: [PATCH] Changed to system type --- Slang/builtin.slg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Slang/builtin.slg b/Slang/builtin.slg index 34464d7..576ed70 100644 --- a/Slang/builtin.slg +++ b/Slang/builtin.slg @@ -88,6 +88,6 @@ func NSprite(path, x, y, r) // Creates new Vector2 class func Vec2(x, y) { - Vec2 v = CPP.Graphics.Vec2(x, y) + Vec2 v = CPP.System.Vec2(x, y) return v }