/// <summary> /// Constructor /// </summary> public EmoState() { hEmoState = EdkDll.IS_Create(); }
/// <summary> /// Copy constructor /// </summary> /// <param name="es">EmoState to be copied</param> public EmoState(EmoState es) { this.hEmoState = EdkDll.IS_Create(); EdkDll.IS_Copy(this.hEmoState, es.GetHandle()); }