mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-19 04:12:22 -07:00
15 lines
202 B
Odin
15 lines
202 B
Odin
#+private
|
|
#+build js
|
|
package terminal
|
|
|
|
import "core:os"
|
|
|
|
_is_terminal :: proc(handle: os.Handle) -> bool {
|
|
return true
|
|
}
|
|
|
|
_init_terminal :: proc() {
|
|
color_depth = .None
|
|
}
|
|
|
|
_fini_terminal :: proc() { } |