'Engine.old' as the folder name says.

This commit is contained in:
2021-01-21 14:08:39 -06:00
commit c19ade9a40
20 changed files with 1434 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Engine
{
public static class ExpressionList
{
public static List<Node> Expressions = new List<Node>();
}
}