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