Skip to content

Commit

Permalink
Merge pull request #292 from codeforkosen/improve
Browse files Browse the repository at this point in the history
!feat: クラスを整理 v2のリリース
  • Loading branch information
ninja03 authored May 3, 2023
2 parents b8cb6cd + 108182d commit 1eb029f
Show file tree
Hide file tree
Showing 37 changed files with 1,744 additions and 2,407 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
node_modules

coverage
coverage-html
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,15 @@ http://2ndpinew.site/d/test/kakomimasu/local/v0/?w=10&h=10&nAgent=6&endTurn=10&p
import {
Action,
Board,
Kakomimasu,
} from "https://raw.githubusercontent.com/codeforkosen/Kakomimasu/v1.0.0/Kakomimasu.js";
const kkmm = new Kakomimasu();
Game,
Player,
} from "https://raw.githubusercontent.com/codeforkosen/Kakomimasu/${version}/mod.ts";
const board: Board = {
width: 10,
height: 10,
points: new Array(width * height),
};
const game = new Game(board);
```

## コア利用方法(リポジトリを取得し、ローカルで使用する)
Expand All @@ -80,17 +86,16 @@ $ deno run sample/main.js
## コアテスト

```console
$ deno test ./test
$ deno task test
```

Github
Actionsのローカル実行ツール「[act](https://github.com/nektos/act)」を使用したテストを行うには、actとDockerをインストールした状態で以下を実行
## その他

```console
$ act
```
### Online版

## その他
Kakomimasuコアを利用したAPIを通してリアルタイム対戦可能なオンラインサーバが公開されています。

詳しくはこちら:[kakomimasu.com](https://kakomimasu.com)

### スマホアプリデザイン案

Expand Down
Loading

0 comments on commit 1eb029f

Please sign in to comment.