├── LICENSE ├── README ├── README.md ├── index.html ├── linearGame ├── Canvas.html ├── GameCompiled.html ├── bigryan │ ├── Canvas.js │ ├── Constants.js │ ├── Direction.js │ ├── Ego.js │ ├── Game.js │ ├── LinearAd.js │ ├── Maze.js │ ├── MazeLogic.js │ ├── Monster.js │ ├── Monsters.js │ ├── PathFinder.js │ ├── Sprite.js │ └── Terrain.js ├── build.sh └── gendeps.sh ├── nonLinear └── VpaidNonLinear.js ├── playVideo └── VpaidVideoAd.js └── testCallbacks └── VpaidCallbackAd.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /linearGame/Canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/Canvas.html -------------------------------------------------------------------------------- /linearGame/GameCompiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/GameCompiled.html -------------------------------------------------------------------------------- /linearGame/bigryan/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Canvas.js -------------------------------------------------------------------------------- /linearGame/bigryan/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Constants.js -------------------------------------------------------------------------------- /linearGame/bigryan/Direction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Direction.js -------------------------------------------------------------------------------- /linearGame/bigryan/Ego.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Ego.js -------------------------------------------------------------------------------- /linearGame/bigryan/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Game.js -------------------------------------------------------------------------------- /linearGame/bigryan/LinearAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/LinearAd.js -------------------------------------------------------------------------------- /linearGame/bigryan/Maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Maze.js -------------------------------------------------------------------------------- /linearGame/bigryan/MazeLogic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/MazeLogic.js -------------------------------------------------------------------------------- /linearGame/bigryan/Monster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Monster.js -------------------------------------------------------------------------------- /linearGame/bigryan/Monsters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Monsters.js -------------------------------------------------------------------------------- /linearGame/bigryan/PathFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/PathFinder.js -------------------------------------------------------------------------------- /linearGame/bigryan/Sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Sprite.js -------------------------------------------------------------------------------- /linearGame/bigryan/Terrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/bigryan/Terrain.js -------------------------------------------------------------------------------- /linearGame/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/build.sh -------------------------------------------------------------------------------- /linearGame/gendeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/linearGame/gendeps.sh -------------------------------------------------------------------------------- /nonLinear/VpaidNonLinear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/nonLinear/VpaidNonLinear.js -------------------------------------------------------------------------------- /playVideo/VpaidVideoAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/playVideo/VpaidVideoAd.js -------------------------------------------------------------------------------- /testCallbacks/VpaidCallbackAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanthompson591/vpaidExamples/HEAD/testCallbacks/VpaidCallbackAd.js --------------------------------------------------------------------------------