https://github.com/laxystem/spock
  
  
    Kotlin/Multiplatform Concurrent Game Engine 
    https://github.com/laxystem/spock
  
game-development game-engine kotlin kotlin-multiplatform webassembly webgpu wgpu
        Last synced: 8 months ago 
        JSON representation
    
Kotlin/Multiplatform Concurrent Game Engine
- Host: GitHub
- URL: https://github.com/laxystem/spock
- Owner: Laxystem
- License: mpl-2.0
- Created: 2024-12-22T15:52:03.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-02-14T18:49:00.000Z (9 months ago)
- Last Synced: 2025-02-14T19:32:20.878Z (9 months ago)
- Topics: game-development, game-engine, kotlin, kotlin-multiplatform, webassembly, webgpu, wgpu
- Language: Kotlin
- Homepage: https://codeberg.org/Laxystem/Spock
- Size: 729 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
- 
            Metadata Files:
            - Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
 
Awesome Lists containing this project
README
          # Spock Engine
> [!NOTE]
> Spock is [developed on Codeberg](https://codeberg.org/Laxystem/Spock), and [mirrored on GitHub](https://GitHub.com/Laxystem/Spock).
> [!CAUTION]
> Spock is in alpha.
> Backwards compatibility is intended but not guaranteed.
## Maven
All modules are available on maven central.
```kotlin
// build.gradle.kts
repositories.mavenCentral()
val spock: String by properties
dependencies {
	// core
	implementation("quest.laxla:spock:$spock")
	// any other module, e.g. util
	implementation("quest.laxla:spock-util:$spock")
}
```