/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
iOS/SharedCode/In-Game Controls/ControlComponent.h
29 строк
656 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// // ControlComponent.h // IOSClient // // Created by Ben Tkacheff on 9/6/12. // Copyright (c) 2012 tolkring@gmail.com. All rights reserved. // #pragma once #import <UIKit/UIKit.h> #include "v8datamodel/UserInputService.h" #include "v8datamodel/GamepadService.h" #include "v8datamodel/TouchInputService.h" @class ControlView; @interface ControlComponent : UIImageView { } - (RBX::Game*) getGameFromControlView; - (RBX::GamepadService*) getGamepadServiceForGameDataModel; - (RBX::UserInputService*) getUserInputServiceForGameDataModel; - (RBX::TouchInputService*) getTouchInputServiceForGameDataModel; - (ControlView*) findControlView; @end