22 lines
492 B
C#
22 lines
492 B
C#
using System;
|
|
|
|
namespace rail
|
|
{
|
|
public class IRailInGameStorePurchaseHelperImpl : RailObject, IRailInGameStorePurchaseHelper
|
|
{
|
|
internal IRailInGameStorePurchaseHelperImpl(IntPtr cPtr)
|
|
{
|
|
swigCPtr_ = cPtr;
|
|
}
|
|
|
|
~IRailInGameStorePurchaseHelperImpl()
|
|
{
|
|
}
|
|
|
|
public virtual RailResult AsyncShowPaymentWindow(string order_id, string user_data)
|
|
{
|
|
return (RailResult)RAIL_API_PINVOKE.IRailInGameStorePurchaseHelper_AsyncShowPaymentWindow(swigCPtr_, order_id, user_data);
|
|
}
|
|
}
|
|
}
|