Font.cs 434 B

12345678910111213141516
  1. using System.Runtime.CompilerServices;
  2. namespace BansheeEngine
  3. {
  4. public sealed class Font : Resource // TODO - Dummy class
  5. {
  6. internal Font(bool constructNative)
  7. {
  8. if (constructNative)
  9. Internal_CreateInstance(this);
  10. }
  11. [MethodImpl(MethodImplOptions.InternalCall)]
  12. private static extern void Internal_CreateInstance(Font instance);
  13. }
  14. }