https://github.com/tkmax777/kiritan_handler
東北きりたんのGUIをGoから制御するもの。
https://github.com/tkmax777/kiritan_handler
Last synced: 3 months ago
JSON representation
東北きりたんのGUIをGoから制御するもの。
- Host: GitHub
- URL: https://github.com/tkmax777/kiritan_handler
- Owner: TKMAX777
- License: mit
- Created: 2022-02-13T05:36:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-08T10:48:46.000Z (about 3 years ago)
- Last Synced: 2024-04-17T15:35:00.611Z (about 1 year ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# KIRITAN Handler
## 概要
東北きりたんのGUIの一部をGoから制御するライブラリ。## 仕組み
Win32APIで適当にGUIを操作しているだけ。## Usage
```go
import "github.com/TKMAX777/kiritan_handler"func main() {
kiritan, err := kiritan_handler.New()
if err != nil {
panic(err)
}kiritan.SetText("ほげほげ")
kiritan.Play()
}```