This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening reactnative_brugge.xcworkspace. | |
Command line invocation: | |
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace reactnative_brugge.xcworkspace -configuration Debug -scheme reactnative_brugge -destination id=320AB6A4-C7DC-400E-A087-FD7E3D9BF608 | |
User defaults from command line: | |
IDEPackageSupportUseBuiltinSCM = YES | |
Resolve Package Graph | |
Resolved source packages: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const canvas = document.getElementById('canvas1'); | |
const ctx = canvas.getContext('2d'); | |
canvas.width = 900; | |
canvas.height = 600; | |
// global variables | |
const cellSize = 100; | |
const cellGap = 3; | |
const gameGrid = []; | |
const defenders = []; |