ConnectionState.cs 582 B

123456789101112131415161718192021
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.1
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. namespace RakNet {
  9. public enum ConnectionState {
  10. IS_PENDING,
  11. IS_CONNECTING,
  12. IS_CONNECTED,
  13. IS_DISCONNECTING,
  14. IS_SILENTLY_DISCONNECTING,
  15. IS_DISCONNECTED,
  16. IS_NOT_CONNECTED
  17. }
  18. }
粤ICP备19079148号