Skip to content

Commit a4ec39b

Browse files
author
DavidQ
committed
remove non required .gitkeep files
1 parent 4791663 commit a4ec39b

10 files changed

Lines changed: 33 additions & 0 deletions

File tree

games/vector-arcade-sample/debug/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/entities/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/flow/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/game/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/levels/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/rules/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/systems/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/ui/.gitkeep

Whitespace-only changes.

games/vector-arcade-sample/utils/.gitkeep

Whitespace-only changes.

scripts/PS/New-Game-from-Template.ps1

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
<#
2+
.SYNOPSIS
3+
Creates a new game from the template structure.
4+
5+
.DESCRIPTION
6+
Copies the games/_template structure into a new game folder and initializes it.
7+
8+
.PARAMETER Name
9+
Name of the new game (required).
10+
11+
.PARAMETER Destination
12+
Target directory where the new game will be created.
13+
Default: .\games
14+
15+
.PARAMETER Force
16+
Overwrite existing target directory if it exists.
17+
18+
.PARAMETER NoAssets
19+
Skip copying assets folder.
20+
21+
.EXAMPLE
22+
.\New-Game-from-Template.ps1 -Name "Asteroids"
23+
24+
.EXAMPLE
25+
.\New-Game-from-Template.ps1 -Name "Shooter" -Destination ".\games\arcade"
26+
27+
.EXAMPLE
28+
.\New-Game-from-Template.ps1 -Name "TestGame" -Force -NoAssets
29+
30+
.NOTES
31+
Part of HTML-JavaScript-Gaming workflow.
32+
#>
33+
134
[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = "Medium")]
235
param(
336
[Parameter(Mandatory = $true)]

0 commit comments

Comments
 (0)