├── LICENSE ├── README.md ├── VKTankViewDemo.gif ├── VNTankViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── varunnaharia.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── varunnaharia.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── VNTankViewDemo.xcscheme │ └── xcschememanagement.plist ├── VNTankViewDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── VNTankView │ ├── VNTankView.swift │ └── VNTankView.xib └── ViewController.swift ├── VNTankViewDemoTests ├── Info.plist └── VNTankViewDemoTests.swift └── VNTankViewDemoUITests ├── Info.plist └── VNTankViewDemoUITests.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/README.md -------------------------------------------------------------------------------- /VKTankViewDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VKTankViewDemo.gif -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/project.xcworkspace/xcuserdata/varunnaharia.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/project.xcworkspace/xcuserdata/varunnaharia.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcschemes/VNTankViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcschemes/VNTankViewDemo.xcscheme -------------------------------------------------------------------------------- /VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo.xcodeproj/xcuserdata/varunnaharia.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VNTankViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /VNTankViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VNTankViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VNTankViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VNTankViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/Info.plist -------------------------------------------------------------------------------- /VNTankViewDemo/VNTankView/VNTankView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/VNTankView/VNTankView.swift -------------------------------------------------------------------------------- /VNTankViewDemo/VNTankView/VNTankView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/VNTankView/VNTankView.xib -------------------------------------------------------------------------------- /VNTankViewDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemo/ViewController.swift -------------------------------------------------------------------------------- /VNTankViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemoTests/Info.plist -------------------------------------------------------------------------------- /VNTankViewDemoTests/VNTankViewDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemoTests/VNTankViewDemoTests.swift -------------------------------------------------------------------------------- /VNTankViewDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemoUITests/Info.plist -------------------------------------------------------------------------------- /VNTankViewDemoUITests/VNTankViewDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varun-naharia/VNTankViewDemo/HEAD/VNTankViewDemoUITests/VNTankViewDemoUITests.swift --------------------------------------------------------------------------------