Falco Engine 3.9.0.1 (beta)
Application.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices;
4
5namespace FalcoEngine
6{
7 public static class Application
8 {
12 public static void Quit()
13 {
14 INTERNAL_quit();
15 }
16
20 public static string assetsPath { [MethodImpl(MethodImplOptions.InternalCall)] get; }
21
22 [MethodImpl(MethodImplOptions.InternalCall)]
23 private static extern void INTERNAL_quit();
24 }
25}
static void Quit()
Quit the application
Definition: Application.cs:12
static string assetsPath
Returns path to the assets location
Definition: Application.cs:20