13 lines
223 B
C#
13 lines
223 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public interface IConfigProvider
|
||
|
{
|
||
|
string GetConfig(params object[] args);
|
||
|
void Configure(params object[] args);
|
||
|
}
|
||
|
}
|