blob: 33c5a2e9211960a524130d85cee2795bdeeef3ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XUtliPoolLib
{
public interface IXScene
{
bool XSceneLoadScene(string scenename, Action<float> progress);
bool XSceneIsDone();
bool XSceneEnable(string scenename);
}
}
|