2015-01-05 16:44:39 +01:00
<!DOCTYPE html>
2016-08-27 17:58:27 +02:00
< script src = "../scripts/force-https.js" > < / script >
2015-01-08 18:48:25 +01:00
< link rel = "shortcut icon" href = "../favicon.png" type = "image/png" >
< link rel = "icon" href = "../favicon.png" type = "image/png" >
2015-01-08 19:29:59 +01:00
< title > Ebiten example - blocks< / title >
2016-08-27 17:48:15 +02:00
< link rel = "stylesheet" href = "../stylesheets/bootstrap.min.css" >
< link rel = "stylesheet" href = "../stylesheets/highlight-github.css" >
< link rel = "stylesheet" href = "../stylesheets/ebiten.css" >
2016-08-29 02:51:38 +02:00
< script src = "./scripts/googleanalytics.js" > < / script >
2015-01-08 15:45:30 +01:00
2016-08-26 19:28:57 +02:00
< header class = "navbar" > < div class = "container" >
< div class = "navbar-header" >
2016-08-27 17:48:15 +02:00
< a class = "navbar-brand" href = ".." > Ebiten< / a >
2016-08-26 19:28:57 +02:00
< / div >
2016-08-26 19:37:08 +02:00
< nav class = "collapse navbar-collapse" >
< ul class = "nav navbar-nav navbar-right" >
< li > < a href = "https://github.com/hajimehoshi/ebiten" > GitHub< / a > < / li >
2016-08-27 17:58:27 +02:00
< li > < a href = "https://godoc.org/github.com/hajimehoshi/ebiten" > GoDoc< / a > < / li >
2016-08-26 19:37:08 +02:00
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki" > Wiki< / a >
< / ul >
< / nav >
2016-08-26 19:28:57 +02:00
< / header >
< main > < div class = "container" >
2016-08-26 20:18:16 +02:00
< h2 > Ebiten example - blocks< / h2 >
2016-08-26 19:28:57 +02:00
< iframe src = "blocks.content.html" width = "512" height = "480" > < / iframe >
2016-08-27 07:00:06 +02:00
< pre > < code class = "language-go" > // Please read examples/blocks/main.go and examples/blocks/blocks/*.go
2016-02-15 19:04:44 +01:00
// NOTE: If Gamepad API is available in your browswer, you can use gamepads. Try it out!< / code > < / pre >
2015-01-08 15:45:30 +01:00
2016-08-26 19:28:57 +02:00
< / div > < / main >
< footer > < div class = "container" >
< p > © 2013 Hajime Hoshi< / p >
2016-08-28 00:10:41 +02:00
< p > Code is licensed under < a href = "https://github.com/hajimehoshi/ebiten/blob/master/LICENSE" > the Apache License 2.0< / a > .< / p >
2016-08-26 19:28:57 +02:00
< p > The content of this page is licensed under < a href = "https://creativecommons.org/licenses/by/4.0/" > the Creative Commons Attribution 4.0 License< / a > .< / p >
< / div > < / footer >
2015-01-08 15:45:30 +01:00
2016-08-27 17:48:15 +02:00
< script src = "../scripts/highlight.pack.js" > < / script >
2016-08-27 07:00:06 +02:00
< script > hljs . initHighlightingOnLoad ( ) ; < / script >