This commit is contained in:
2026-02-17 14:18:28 +01:00
parent 0d7dbf7d87
commit e6eb10f89a
5 changed files with 134 additions and 0 deletions

14
rktplayer.rkt Normal file
View File

@@ -0,0 +1,14 @@
#lang racket
(require "gui.rkt"
simple-ini/class
)
(define (run)
(let* ((ini (new ini% [file 'rktplayer]))
(settings (new ww-simple-ini% [ini ini] [section 'player]))
(window (new rktplayer% [settings settings]))
)
window)
)