PodVector.cs 392 B

123456789101112131415161718
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Urho {
  4. public class PodVector<T> where T : UrhoObject {
  5. IntPtr handle;
  6. public PodVector ()
  7. {
  8. #if false
  9. if (typeof (T) == typeof (Node))
  10. handle = PodVectorHelper.PODVector__NodePtr_new ();
  11. else
  12. throw new NotImplementedException ("There is no support for PodVectors of the specified type");
  13. #endif
  14. }
  15. }
  16. }