mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2025-12-12 01:23:31 +08:00
14 lines
192 B
C#
14 lines
192 B
C#
using UnityEngine;
|
|
|
|
namespace AssetsLoader
|
|
{
|
|
internal class ABFileLoad : ABLoad
|
|
{
|
|
public ABFileLoad(string filepath)
|
|
{
|
|
Ab = AssetBundle.LoadFromFile(filepath);
|
|
Init();
|
|
}
|
|
}
|
|
}
|