AvatarScaleMod: renamed folder

This commit is contained in:
NotAKidoS 2024-09-06 01:19:20 -05:00
parent a1d73bf156
commit fd4fe2ea9d
28 changed files with 6 additions and 6 deletions

27
AvatarScaleMod/Scripts.cs Normal file
View file

@ -0,0 +1,27 @@
using System;
using System.IO;
using System.Reflection;
// https://github.com/SDraw/ml_mods_cvr/blob/master/ml_amt/Scripts.cs
namespace NAK.AvatarScaleMod
{
static class Scripts
{
public static string GetEmbeddedScript(string p_name)
{
string l_result = "";
Assembly l_assembly = Assembly.GetExecutingAssembly();
string l_assemblyName = l_assembly.GetName().Name;
try
{
Stream l_libraryStream = l_assembly.GetManifestResourceStream(l_assemblyName + ".resources." + p_name);
StreamReader l_streadReader = new StreamReader(l_libraryStream);
l_result = l_streadReader.ReadToEnd();
}
catch(Exception) { }
return l_result;
}
}
}