procmod-overlay 3.0.0

Game overlay rendering with transparent click-through windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: screenshot
on: workflow_dispatch

jobs:
  capture:
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v7
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo build --example demo
      - name: capture
        env:
          PROCMOD_SCREENSHOT: "1"
        run: cargo run --example demo
      - uses: actions/upload-artifact@v4
        with:
          name: screenshot
          path: example.png