25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.IO;
- using NScript.Filmscript;
-
- namespace NScript.Install
- {
- public static class InstallTools
- {
- public static bool NativeDllExists(string name)
- {
- return File.Exists(NativeDllFilepath(name));
- }
-
- public static string NativeDllFilepath(string name = "")
- {
- return "TechbloxPreview_Data/Plugins/x86_64/" + name;
- }
-
- public static Installer BuildDefaultInstaller()
- {
- return new Installer(new IInstallable[]
- {
- new FilmscriptInstaller(),
- });
- }
- }
- }
|