Builtin.cs 365 B

123456789101112131415
  1. using System.Runtime.CompilerServices;
  2. namespace BansheeEngine
  3. {
  4. public static class Builtin
  5. {
  6. public static SpriteTexture WhiteTexture
  7. {
  8. get { return Internal_GetWhiteTexture(); }
  9. }
  10. [MethodImpl(MethodImplOptions.InternalCall)]
  11. private static extern SpriteTexture Internal_GetWhiteTexture();
  12. }
  13. }