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
+21
View File
@@ -0,0 +1,21 @@
module.exports = function(grunt) {
grunt.log.writeln('foo', 'bar', 'baz');
grunt.initConfig({
clean: {
all: [
'deep/**',
],
exclude: [
'deep/**',
'!deep/deep.txt'
],
}
});
grunt.registerMultiTask('clean', function() {
this.filesSrc.forEach(function(filepath) {
console.log('delete', filepath);
});
});
};