LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/Error.h
2019-07-01 14:33:21 +02:00

17 lines
212 B
C++

#pragma once
#include "os/ErrorCodes.h"
namespace il2cpp
{
namespace os
{
class Error
{
public:
static ErrorCode GetLastError();
static void SetLastError(ErrorCode code);
};
}
}