Skip to content

Instantly share code, notes, and snippets.

@marcelhollerbach
Created December 19, 2018 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelhollerbach/17d49ac4ac14428dd87f18ce8e15ced3 to your computer and use it in GitHub Desktop.
Save marcelhollerbach/17d49ac4ac14428dd87f18ce8e15ced3 to your computer and use it in GitHub Desktop.
efl-example
using System
class MyApplication : Efl.CsharpApplication {
public override void terminate() {
}
public override void pause() {
}
public override void resume() {
}
public override void arguments() {
}
}
public class MyApplicationLauncher {
public static void Main()
{
Efl.CsharpLauncher.lauch(MyApplication);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment