just delete client.transformX/Y, if anyone yells, direct them at me
This commit is contained in:
parent
8084fce648
commit
ed571cddef
|
@ -674,12 +674,6 @@ namespace BizHawk.Client.ApiHawk
|
|||
throw new Exception();
|
||||
}
|
||||
|
||||
[Obsolete]
|
||||
public static int TransformPointX(int x) => TransformPoint(new Point(x, 0)).X;
|
||||
|
||||
[Obsolete]
|
||||
public static int TransformPointY(int y) => TransformPoint(new Point(0, y)).Y;
|
||||
|
||||
public static void Unpause()
|
||||
{
|
||||
InvokeMainFormMethod("UnpauseEmulator");
|
||||
|
|
|
@ -372,18 +372,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
return table;
|
||||
}
|
||||
|
||||
#pragma warning disable CS0612
|
||||
[LuaDeprecatedMethod]
|
||||
[LuaMethodExample("local inclitra = client.transformPointX( 16 );")]
|
||||
[LuaMethod("transformPointX", "Transforms an x-coordinate in emulator space to an x-coordinate in client space")]
|
||||
public static int TransformPointX(int x) => ClientApi.TransformPointX(x);
|
||||
|
||||
[LuaDeprecatedMethod]
|
||||
[LuaMethodExample("local inclitra = client.transformPointY( 32 );")]
|
||||
[LuaMethod("transformPointY", "Transforms an y-coordinate in emulator space to an y-coordinate in client space")]
|
||||
public static int TransformPointY(int y) => ClientApi.TransformPointY(y);
|
||||
#pragma warning restore CS0612
|
||||
|
||||
[LuaMethodExample("client.unpause( );")]
|
||||
[LuaMethod("unpause", "Unpauses the emulator")]
|
||||
public void Unpause()
|
||||
|
|
Loading…
Reference in New Issue