Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tic-tac-toe/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
70 changes: 70 additions & 0 deletions tic-tac-toe/.nanoforge/client.save.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"libraries": [
{
"id": "assetManagerLibrary",
"type": "asset-manager",
"name": "AssetManagerLibrary",
"path": "@nanoforge-dev/asset-manager",
"params": []
},
{
"id": "ecsLibrary",
"type": "component-system",
"name": "ECSClientLibrary",
"path": "@nanoforge-dev/ecs-client",
"params": []
},
{
"id": "graphicsLibrary",
"type": "graphics",
"name": "Graphics2DLibrary",
"path": "@nanoforge-dev/graphics-2d",
"params": []
},
{
"id": "inputLibrary",
"type": "input",
"name": "InputLibrary",
"path": "@nanoforge-dev/input",
"params": []
},
{
"id": "musicLibrary",
"type": "music",
"name": "MusicLibrary",
"path": "@nanoforge-dev/music",
"params": []
},
{
"id": "soundLibrary",
"type": "sound",
"name": "SoundLibrary",
"path": "@nanoforge-dev/sound",
"params": []
}
],
"components": [
{
"name": "ExampleComponent",
"path": "./components/example.component.ts",
"paramsNames": ["paramA", "paramB", "paramC"]
}
],
"systems": [
{
"name": "exampleSystem",
"path": "./systems/example.system.ts"
}
],
"entities": [
{
"id": "exampleEntity",
"components": {
"ExampleComponent": {
"paramA": "example",
"paramB": 10
}
}
}
]
}
Binary file added tic-tac-toe/.nanoforge/client/libecs.wasm

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You must add a .gitignore to avoid pushing .nanoforge/client.
Those files are compiled files that should not be pushed !

Binary file not shown.
Loading