-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCellscript.js
27 lines (24 loc) · 887 Bytes
/
Cellscript.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* Specs Engine: the Spectacles Saga game engine
* Copyright © 2012-2024 Where'd She Go? Productions
* All rights reserved.
**/
describe({
version: 2,
apiLevel: 4,
name: "Spectacles: Bruce's Story",
author: "Where'd She Go? Productions",
summary: "Follow Scott Starcross in his quest to stop the Primus from, um... what does the Primus do again?",
resolution: '320x240',
main: 'scripts/main.js',
saveID: 'Spectacles Saga',
});
install('@/', files('icon.png'));
install('@/scripts', files('scripts/*.js', true));
install('@/data', files('data/*.json', true));
install('@/images', files('images/*.png', true));
install('@/logos', files('logos/*.png', true));
install('@/music', files('music/*.ogg', true));
install('@/shaders', files('shaders/*.glsl', true));
install('@/spritesets', files('spritesets/*.rss', true));
install('@/sounds', files('sounds/*.wav', true));