├── LICENSE ├── README.md ├── example ├── Main.hx └── plumob.json ├── haxelib.json ├── run-src ├── Command.hx ├── Main.hx ├── Platform.hx ├── Project.hx ├── Target.hx ├── XCProject.hx ├── XCSource.hx ├── XCSourceType.hx ├── make.hxml └── plat │ ├── IOS.hx │ └── IOSGroup.hx ├── src └── plumob │ ├── ObjCWrap.hx │ └── ios │ └── Events.hx └── template ├── Main.hx ├── ios └── project │ ├── HaxeAppDelegate.h │ ├── HaxeAppDelegate.mm │ ├── HaxeListener.h │ ├── HaxeListener.mm │ ├── Info.plist │ ├── Prefix.pch │ └── main.mm └── plumob.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/README.md -------------------------------------------------------------------------------- /example/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/example/Main.hx -------------------------------------------------------------------------------- /example/plumob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/example/plumob.json -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/haxelib.json -------------------------------------------------------------------------------- /run-src/Command.hx: -------------------------------------------------------------------------------- 1 | enum Command { 2 | Raw(cmd:String); 3 | } 4 | -------------------------------------------------------------------------------- /run-src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/Main.hx -------------------------------------------------------------------------------- /run-src/Platform.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/Platform.hx -------------------------------------------------------------------------------- /run-src/Project.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/Project.hx -------------------------------------------------------------------------------- /run-src/Target.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/Target.hx -------------------------------------------------------------------------------- /run-src/XCProject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/XCProject.hx -------------------------------------------------------------------------------- /run-src/XCSource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/XCSource.hx -------------------------------------------------------------------------------- /run-src/XCSourceType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/XCSourceType.hx -------------------------------------------------------------------------------- /run-src/make.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -neko ../run.n 3 | -------------------------------------------------------------------------------- /run-src/plat/IOS.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/plat/IOS.hx -------------------------------------------------------------------------------- /run-src/plat/IOSGroup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/run-src/plat/IOSGroup.hx -------------------------------------------------------------------------------- /src/plumob/ObjCWrap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/src/plumob/ObjCWrap.hx -------------------------------------------------------------------------------- /src/plumob/ios/Events.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/src/plumob/ios/Events.hx -------------------------------------------------------------------------------- /template/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/Main.hx -------------------------------------------------------------------------------- /template/ios/project/HaxeAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/HaxeAppDelegate.h -------------------------------------------------------------------------------- /template/ios/project/HaxeAppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/HaxeAppDelegate.mm -------------------------------------------------------------------------------- /template/ios/project/HaxeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/HaxeListener.h -------------------------------------------------------------------------------- /template/ios/project/HaxeListener.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/HaxeListener.mm -------------------------------------------------------------------------------- /template/ios/project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/Info.plist -------------------------------------------------------------------------------- /template/ios/project/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/Prefix.pch -------------------------------------------------------------------------------- /template/ios/project/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/ios/project/main.mm -------------------------------------------------------------------------------- /template/plumob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurel300/plumob/HEAD/template/plumob.json --------------------------------------------------------------------------------