| 12345678910111213141516171819202122 |
- using System;
- using System.Runtime.CompilerServices;
- namespace BansheeEngine
- {
- /// <summary>
- /// Base class for all resources. Resources can be persistently referenced by scene objects or other resources.
- /// </summary>
- public class Resource : ScriptObject
- {
- /// <summary>
- /// Name of the resource. Use primarily for easier identification and not important to the engine itself.
- /// </summary>
- public string Name
- {
- get { return Internal_GetName(mCachedPtr); }
- }
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern string Internal_GetName(IntPtr nativeInstance);
- }
- }
|