GPUObject.cs 215 B

123456789101112131415161718
  1. using System;
  2. namespace Urho
  3. {
  4. partial class GPUObject
  5. {
  6. IntPtr handle;
  7. public GPUObject(IntPtr handle)
  8. {
  9. this.handle = handle;
  10. }
  11. }
  12. public interface IGPUObject
  13. {
  14. GPUObject AsGPUObject();
  15. }
  16. }