11 lines
170 B
C#
11 lines
170 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace I2.Loc
|
|
{
|
|
public interface IResourceManager_Bundles
|
|
{
|
|
UnityEngine.Object LoadFromBundle(string path, Type assetType);
|
|
}
|
|
}
|