2021-08-19 09:20:43 +02:00
|
|
|
pub const (
|
2022-05-02 22:48:37 +02:00
|
|
|
source_root = 'temp' // some const
|
|
|
|
another = int(5) //
|
|
|
|
)
|
|
|
|
|
|
|
|
// Used to indicate that you don't care what the window position is.
|
|
|
|
pub const (
|
|
|
|
windowpos_undefined_mask = C.SDL_WINDOWPOS_UNDEFINED_MASK // 0x1FFF0000u
|
|
|
|
windowpos_undefined = C.SDL_WINDOWPOS_UNDEFINED //
|
2021-06-22 17:52:34 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// funky - comment for function below
|
2021-08-19 09:20:43 +02:00
|
|
|
pub fn funky() {
|
2021-06-22 17:52:34 +02:00
|
|
|
println('hi')
|
|
|
|
}
|