Model.cs 333 B

1234567891011121314
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Urho {
  4. public partial class Model {
  5. [DllImport (Consts.NativeImport, CallingConvention=CallingConvention.Cdecl)]
  6. extern static IntPtr Model_Clone (IntPtr handle);
  7. public Model Clone ()
  8. {
  9. return Runtime.LookupObject<Model> (Model_Clone (handle));
  10. }
  11. }
  12. }