Serializer.cs 127 B

123456789101112
  1. using System;
  2. namespace AtomicEngine
  3. {
  4. public interface Serializer
  5. {
  6. IntPtr NativeInstance { get; }
  7. }
  8. }