//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
using System;
using System.Runtime.CompilerServices;
namespace BansheeEngine
{
/** @addtogroup Utility
* @{
*/
public partial class AsyncOp
{
///
/// Retrieves the value returned by the async operation. Only valid if returns true.
///
/// Type of the return value. Caller must ensure to provide the valid type.
/// Return value of the async operation.
public T GetReturnValue()
{
return (T)Internal_getReturnValue(mCachedPtr);
}
}
/** @} */
}