Falco Engine 3.9.0.1 (beta)
Image.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices;
4
5namespace FalcoEngine
6{
7 public class Image : UIElement
8 {
9 internal Image()
10 {
11
12 }
13
17 public Texture texture { [MethodImpl(MethodImplOptions.InternalCall)] get; [MethodImpl(MethodImplOptions.InternalCall)] set; }
18 }
19}
Texture texture
Get or set texture for this image
Definition: Image.cs:17