├── .gitignore ├── MVPCStruct.xcodeproj └── project.pbxproj ├── MVPCStruct ├── CStruct.swift ├── Info.plist └── MVPCStruct.h ├── MVPCStructTests ├── Info.plist ├── PackTests.swift └── UnpackTests.swift └── README.markdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/.gitignore -------------------------------------------------------------------------------- /MVPCStruct.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStruct.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MVPCStruct/CStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStruct/CStruct.swift -------------------------------------------------------------------------------- /MVPCStruct/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStruct/Info.plist -------------------------------------------------------------------------------- /MVPCStruct/MVPCStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStruct/MVPCStruct.h -------------------------------------------------------------------------------- /MVPCStructTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStructTests/Info.plist -------------------------------------------------------------------------------- /MVPCStructTests/PackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStructTests/PackTests.swift -------------------------------------------------------------------------------- /MVPCStructTests/UnpackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/MVPCStructTests/UnpackTests.swift -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/MVPCStruct/HEAD/README.markdown --------------------------------------------------------------------------------