1234567891011121314 |
- using CommonLang.IO;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- namespace CommonAI.Zone.ZoneEditor
- {
- public interface ISceneDataLoader
- {
- SceneData Load(int id, bool client_data, IExternalizableFactory factory);
- }
- }
|