From e9ee07f15c798a2a7fd61bcccd216a05bc4b5963 Mon Sep 17 00:00:00 2001 From: arookas Date: Sun, 27 Dec 2015 22:48:17 -0500 Subject: [PATCH] Removed unusedd sunConstInfo class. --- ssc/scope stack.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ssc/scope stack.cs b/ssc/scope stack.cs index 7274ddb..00ccf06 100644 --- a/ssc/scope stack.cs +++ b/ssc/scope stack.cs @@ -118,16 +118,4 @@ namespace arookas Script, // outside of a function Function, // inside of a function } - - class sunConstInfo - { - public string Name { get; private set; } - public sunExpression Expression { get; private set; } - - public sunConstInfo(string name, sunExpression expression) - { - Name = name; - Expression = expression; - } - } }