Skip to content

Commit

Permalink
chore(sample game): updating nvmrc and changing name sample game
Browse files Browse the repository at this point in the history
  • Loading branch information
rallieon committed Jun 21, 2021
1 parent 06d42d9 commit 276bcf0
Show file tree
Hide file tree
Showing 26 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.16.0
16.3.0
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# psychic-client
# haste-game-client

## Overview

The psychic client is an example of the @haste-sdk/client package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and secure ILP interactions.
The haste game client is an example of the @haste-sdk/client package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and secure ILP interactions.

See [here](https://github.com/playhaste/haste-sdk/blob/main/README.md) for an overview of the haste-sdk repository.

Expand Down Expand Up @@ -33,7 +33,7 @@ See [here](https://github.com/playhaste/haste-sdk/blob/main/README.md#Usage) for

### Testing

@haste-sdk/psychic-client utilizes Jest for running tests. To run all tests in the psychic-client package use the following command
@haste-sdk/haste-game-client utilizes Jest for running tests. To run all tests in the haste-game-client package use the following command

`npm run test`

Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@haste-sdk/psychic-client",
"name": "@haste-sdk/haste-game-client",
"version": "0.0.0",
"description": "The psychic client is an example of the @haste-sdk/client package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and secure ILP interactions.",
"description": "The haste game client is an example of the @haste-sdk/client package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and secure ILP interactions.",
"contributors": [
"Keith LaForce <keith@playhaste.com>",
"Eric LaForce <eric@playhaste.com>",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Engine, DisplayMode } from 'excalibur';

export class PsychicGame extends Engine {
export class HasteGame extends Engine {
constructor() {
super({ displayMode: DisplayMode.Container });
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Actor, CollisionType, Color } from 'excalibur';
import { PsychicGame } from './psychicGame';
import { HasteGame } from './hasteGame';

const game = new PsychicGame();
const game = new HasteGame();

// Create an actor with x position of 150px,
// y position of 40px from the bottom of the screen,
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = {
plugins: [
new CleanWebpackPlugin(),
new HtmlWebPackPlugin({
title: 'Psychic',
title: 'Haste Game',
}),
],
};
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# psychic-server
# haste-game-server

## Overview

The psychic server is an example of the @haste-sdk/server package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and payouts.
The haste game server is an example of the @haste-sdk/server package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and payouts.

See [here](https://github.com/playhaste/haste-sdk/blob/main/README.md) for an overview of the haste-sdk repository.

Expand Down Expand Up @@ -33,7 +33,7 @@ See [here](https://github.com/playhaste/haste-sdk/blob/main/README.md#Usage) for

### Testing

@haste-sdk/psychic-server utilizes Jest for running tests. To run all tests in the psychic-server package use the following command
@haste-sdk/haste-game-server utilizes Jest for running tests. To run all tests in the haste-game-server package use the following command

`npm run test`

Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@haste-sdk/psychic-server",
"name": "@haste-sdk/haste-game-server",
"version": "0.0.0",
"description": "The psychic server is an example of the @haste-sdk/server package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and payouts.",
"description": "The haste game server is an example of the @haste-sdk/server package. It utilizes the haste arcade api to demonstrate how to leverge a shared leaderboard and payouts.",
"contributors": [
"Keith LaForce <keith@playhaste.com>",
"Eric LaForce <eric@playhaste.com>",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 276bcf0

Please sign in to comment.