Add Elementary.Run()
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Elementary.cs
1 using System;
2
3 namespace ElmSharp
4 {
5     public static class Elementary
6     {
7         public static void Initialize()
8         {
9             Interop.Elementary.elm_init(0, null);
10         }
11
12         public static void Shutdown()
13         {
14             Interop.Elementary.elm_shutdown();
15         }
16
17         public static void Run()
18         {
19             Interop.Elementary.elm_run();
20         }
21     }
22 }