Falco Engine 3.9.0.1 (beta)
Asset.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices;
4
5namespace FalcoEngine
6{
7 public abstract class Asset
8 {
9 internal Asset() { }
10
11 private IntPtr asset_ptr = (IntPtr)0;
12
16 public string name { [MethodImpl(MethodImplOptions.InternalCall)] get; }
17 }
18}
string name
Get asset name
Definition: Asset.cs:16