Tilemap collision working but needs speeding up

This commit is contained in:
Richard Davey
2013-04-25 20:05:56 +01:00
parent b8ab13fec8
commit b2e1434f5e
1336 changed files with 277759 additions and 6786 deletions
+34
View File
@@ -0,0 +1,34 @@
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
options : {
jshintrc : '.jshintrc'
},
all: ['Gruntfile.js', 'tasks/**/*.js', 'test/**/*.js']
},
open : {
dev : {
path : 'http://127.0.0.1/~jsoverson/'
},
google : {
url : 'http://google.com/'
},
file : {
file : '/etc/hosts'
}
},
});
grunt.loadNpmTasks('grunt-contrib-jshint');
// Load local tasks.
grunt.loadTasks('tasks');
// Default task.
grunt.registerTask('default', ['jshint','open']);
};