mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2026-02-04 14:12:18 +08:00
format code
This commit is contained in:
@@ -2,27 +2,27 @@
|
||||
|
||||
namespace AssetsLoader
|
||||
{
|
||||
public static class ABLoader
|
||||
{
|
||||
public static ABLoad LoadFromFile(string abFilename, string dir)
|
||||
{
|
||||
var text = Path.Combine(dir, abFilename);
|
||||
return new ABFileLoad(text);
|
||||
}
|
||||
public static class ABLoader
|
||||
{
|
||||
public static ABLoad LoadFromFile(string abFilename, string dir)
|
||||
{
|
||||
var text = Path.Combine(dir, abFilename);
|
||||
return new ABFileLoad(text);
|
||||
}
|
||||
|
||||
public static ABLoad LoadFromFile(string filepath)
|
||||
{
|
||||
return new ABFileLoad(filepath);
|
||||
}
|
||||
public static ABLoad LoadFromFile(string filepath)
|
||||
{
|
||||
return new ABFileLoad(filepath);
|
||||
}
|
||||
|
||||
public static ABLoad LoadFromEmbeddedAssets(string abFilename, string defaultNamespace = null)
|
||||
{
|
||||
return new ABEmbeddedAssetsLoad(abFilename, defaultNamespace);
|
||||
}
|
||||
public static ABLoad LoadFromEmbeddedAssets(string abFilename, string defaultNamespace = null)
|
||||
{
|
||||
return new ABEmbeddedAssetsLoad(abFilename, defaultNamespace);
|
||||
}
|
||||
|
||||
public static ABLoad LoadFromDll(string abFilename, string dllFilepath, string dllDefaultNameSpace)
|
||||
{
|
||||
return new ABEmbeddedAssetsLoad(abFilename, dllFilepath, dllDefaultNameSpace);
|
||||
}
|
||||
}
|
||||
public static ABLoad LoadFromDll(string abFilename, string dllFilepath, string dllDefaultNameSpace)
|
||||
{
|
||||
return new ABEmbeddedAssetsLoad(abFilename, dllFilepath, dllDefaultNameSpace);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user