Falco Engine 3.9.0.1 (beta)
Screen.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 Screen
8 {
12 public static int width { [MethodImpl(MethodImplOptions.InternalCall)] get; }
13
17 public static int height { [MethodImpl(MethodImplOptions.InternalCall)] get; }
18 }
19}
static int width
The current width of the screen window in pixels
Definition: Screen.cs:12
static int height
The current height of the screen window in pixels
Definition: Screen.cs:17