historical/callienaps-nw.git/launcher/Program.cs

20 lines
370 B
C#
Raw Normal View History

2024-01-16 11:20:27 -06:00
using System.Runtime.InteropServices;
using System;
namespace HelloWorldLaunch {
public class HelloWorld
{
public static void Main(string[] args)
{
try {
[DllImport("callienaps_blue_main.so")]
static extern int main ();
main();
Console.WriteLine("LETS GO! We injected!");
} catch {
Console.WriteLine(":( didnt work");
}
}
}
}