mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
22 lines
321 B
Objective-C
22 lines
321 B
Objective-C
//
|
|
// Roblox.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Ben Tkacheff on 1/30/13.
|
|
// Copyright (c) 2013 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface FunctionMarshaller : NSObject
|
|
{
|
|
@public void* pClosure;
|
|
}
|
|
|
|
@property (nonatomic,assign) void* pClosure;
|
|
|
|
- (void)marshallFunction;
|
|
|
|
@end
|
|
|