Browse Source

Adding Bitmap to ScriptDocument referenced assemblies

Kenric Nugteren 2 years ago
parent
commit
402251cd06
1 changed files with 2 additions and 0 deletions
  1. 2 0
      inabox.scripting/ScriptDocument.cs

+ 2 - 0
inabox.scripting/ScriptDocument.cs

@@ -1,6 +1,7 @@
 using System;
 using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.ComponentModel;
+using System.Drawing;
 using System.IO;
 using System.IO;
 using System.Linq;
 using System.Linq;
 using System.Linq.Expressions;
 using System.Linq.Expressions;
@@ -53,6 +54,7 @@ namespace InABox.Scripting
                 .Add(typeof(Regex).Assembly)
                 .Add(typeof(Regex).Assembly)
                 .Add(typeof(List<>).Assembly)
                 .Add(typeof(List<>).Assembly)
                 .Add(typeof(Enumerable).Assembly)
                 .Add(typeof(Enumerable).Assembly)
+                .Add(typeof(Bitmap).Assembly)
                 .Add(typeof(Expression).Assembly);
                 .Add(typeof(Expression).Assembly);
         }
         }