File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,3 +65,18 @@ Update the `marauder-129.web.app` URL in the following Android files. Use the `P
6565 * Purchase wooden wands from Etsy
6666 * Attach NFC tags to magic wands (we used clear Scotch tape)
6767 * Configure the NFC tags with the proper URI format described in the [ Android README] ( android/Marauder/README.md )
68+
69+ # Copyright
70+ Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
71+
72+ Licensed under the Apache License, Version 2.0 (the "License");
73+ you may not use this file except in compliance with the License.
74+ You may obtain a copy of the License at
75+
76+ https://www.apache.org/licenses/LICENSE-2.0
77+
78+ Unless required by applicable law or agreed to in writing, software
79+ distributed under the License is distributed on an "AS IS" BASIS,
80+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
81+ See the License for the specific language governing permissions and
82+ limitations under the License.
Original file line number Diff line number Diff line change 1+ <!--
2+ Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+
4+ Licensed under the Apache License, Version 2.0 (the "License");
5+ you may not use this file except in compliance with the License.
6+ You may obtain a copy of the License at
7+
8+ https://www.apache.org/licenses/LICENSE-2.0
9+
10+ Unless required by applicable law or agreed to in writing, software
11+ distributed under the License is distributed on an "AS IS" BASIS,
12+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ See the License for the specific language governing permissions and
14+ limitations under the License.
15+ -->
116<!DOCTYPE html>
217< html lang ="en ">
318 < head >
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import React from 'react' ;
217import logo from './logo.svg' ;
318import './App.css' ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117import React from 'react' ;
218import ReactDOM from 'react-dom' ;
319import App from './App' ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import { getEventsInRange } from './model/GameEvent' ;
217
318export class Game {
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import React , { Component } from 'react' ;
217
318import * as firebase from "firebase/app" ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116export const C = {
217 // Length of a single step in pixels.
318 STEP_DISTANCE : 50 , // 50 pixels.
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import { Person } from '../model/Person.js'
217
318import DobbyName from '../assets/dobby_h200.png' ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import { V } from '../model/Vector2' ;
217import { Door } from '../model/Door' ;
318import { Room } from '../model/Room' ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2019 Chris Cartland and Andrew Stromme. All rights reserved.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
116import { C } from "../config/C" ;
217import { Random } from '../util/Random' ;
318
You can’t perform that action at this time.
0 commit comments