12 lines
185 B
C#
12 lines
185 B
C#
using UnityEngine.EventSystems;
|
|
|
|
namespace InputfieldTests
|
|
{
|
|
public class FakeInputModule : BaseInputModule
|
|
{
|
|
public override void Process()
|
|
{
|
|
}
|
|
}
|
|
}
|