2025-06-04 22:49:37 +08:00
|
|
|
/*
|
|
|
|
* @author Valentin Simonov / http://va.lent.in/
|
|
|
|
*/
|
|
|
|
|
|
|
|
using TouchScript.Editor.Utils;
|
|
|
|
using UnityEditor;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace TouchScript.Editor.InputSources
|
|
|
|
{
|
|
|
|
public class InputSourceEditor : UnityEditor.Editor
|
|
|
|
{
|
2025-08-24 18:59:40 +08:00
|
|
|
protected virtual void OnEnable() {}
|
2025-06-04 22:49:37 +08:00
|
|
|
|
2025-08-24 18:59:40 +08:00
|
|
|
public override void OnInspectorGUI() {}
|
2025-06-04 22:49:37 +08:00
|
|
|
|
|
|
|
protected virtual void drawAdvanced() {}
|
|
|
|
}
|
2025-08-24 18:59:40 +08:00
|
|
|
}
|