14 lines
249 B
C#
14 lines
249 B
C#
using System.Reflection;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public interface IViewHandler
|
|
{
|
|
ViewWrapper DefaultView { get; }
|
|
|
|
BindingFlags BindingFlags { get; }
|
|
|
|
void LoadView(string name, string resource);
|
|
|
|
ViewWrapper GetView(string name);
|
|
}
|