14 lines
284 B
C#
14 lines
284 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using System;
|
|
|
|
namespace ZXKFramework
|
|
{
|
|
public interface IScene
|
|
{
|
|
void LoadLevel(int level);
|
|
void LoadABScene(string sceneName, Action<bool, string> callBack);
|
|
}
|
|
}
|