Skip to content

Commit

Permalink
Releasing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jauntyjocularjay committed May 20, 2024
2 parents 212e955 + c9b7034 commit 26c4388
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions GemGame.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"folders": [
{
"path": "."
},
{
"path": "grid"
},
{
"path": "vjsc"
},
{
"path": "grid/Enumjs"
}
],
"settings": {}
}
4 changes: 2 additions & 2 deletions Gems.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
StyleSheet,
Listener,
ListenerOnLoad,
// FlexBoxClass,

// Classables
// // Containers
Expand Down Expand Up @@ -60,6 +59,7 @@ import {
addAdoptedStyleSheet,
JSONCSS,
} from './vjsc/vanilla.mjs'
import { Grid } from './grid/Grid.mjs'

const kframe = {
fall: 'fall'
Expand Down Expand Up @@ -306,7 +306,7 @@ class PlayField {
constructor(height)
{
this.field = {
data: null,
data: new Grid(height, 8),
container: new FlexBox(flex.r,['field'], 'field'),
lines: []
}
Expand Down

0 comments on commit 26c4388

Please sign in to comment.