_DUnityWebPlayerAXEvents_ReadyStateChangeEvent.cs 307 B

123456789101112131415
  1. namespace AxUnityWebPlayerAXLib
  2. {
  3. using System;
  4. public class _DUnityWebPlayerAXEvents_ReadyStateChangeEvent
  5. {
  6. public int readyState;
  7. public _DUnityWebPlayerAXEvents_ReadyStateChangeEvent(int readyState)
  8. {
  9. this.readyState = readyState;
  10. }
  11. }
  12. }