1
0
mirror of https://github.com/EECS-448-Battleship/project-1 synced 2024-09-28 22:20:48 +00:00
Go to file
2020-09-07 14:34:43 -05:00
lib Add basic libraries and file structure 2020-09-04 21:42:09 -05:00
src Create game state service placeholder class 2020-09-07 14:34:43 -05:00
.gitignore Add basic libraries and file structure 2020-09-04 21:42:09 -05:00
index.html Add basic grid layout and grid cell component; start styles 2020-09-06 17:38:29 -05:00
README.md Add basic libraries and file structure 2020-09-04 21:42:09 -05:00

Battleship

EECS 448 - Project 1

This is a basic battleship game created as our submission for project 1 for EECS 448 at the University of Kansas.

Structure Info

This project has been wired up to use Vue.js to help organize components of the game.

These components are defined in files that end in the .component.js extension, and are located in the src/components/ directory.

The entry point for the project is the index.html. This file contains the basic logic for loading Vue, and adding the game board to the page.

Obviously, we'll flesh out the look-and-feel as we go along. This is just a basic starter for now.

How to Run

The easiest way to run this project is by creating a basic static web server using Python. This is super simple:

  1. Open a terminal or command prompt to the root of this project (i.e. the directory this file is in).
  2. Start the server: python -m http.server

This will start a web server on port 8000. You can then run the game by navigating to http://localhost:8000/ from a web browser.

Contributors

  • Lucas Brakenridge
  • Javier Barea Lara
  • Garrett Mills
  • Evan Powell
  • Alec Horlick-Mills