This file contains hidden or 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
package collision | |
import ( | |
rl "github.com/gen2brain/raylib-go/raylib" | |
) | |
type Line struct { | |
Start rl.Vector2 | |
End rl.Vector2 | |
} |
This file contains hidden or 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
package collision | |
import ( | |
rl "github.com/gen2brain/raylib-go/raylib" | |
) | |
type Line struct { | |
Start rl.Vector2 | |
End rl.Vector2 | |
} |
This file contains hidden or 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
<Form action="?/deleteTodo" let:submitting> | |
<input type="hidden" name="todoId" value={todo.id} /> | |
<button type="submit" disabled={submitting}>Delete</button> | |
</Form> |
This file contains hidden or 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
package main | |
import ( | |
"math" | |
"sync" | |
"unsafe" | |
"github.com/edsrzf/mmap-go" | |
) |
This file contains hidden or 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
package main | |
import "unsafe" | |
type ValueType int | |
const ( | |
VALUE_INT ValueType = iota | |
VALUE_ARRAY | |
) |