AttributeInfo.cs 226 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Runtime.InteropServices;
  5. namespace Urho {
  6. [StructLayout (LayoutKind.Sequential)]
  7. public partial struct AttributeInfo {
  8. IntPtr foo;
  9. }
  10. }