2017-06-24 17:48:11 +02:00
<!DOCTYPE html>
< script src = "../scripts/force-https.js" > < / script >
< link rel = "shortcut icon" href = "../favicon.png" type = "image/png" >
< link rel = "icon" href = "../favicon.png" type = "image/png" >
< title > Ebiten example - 2048< / title >
< link rel = "stylesheet" href = "../stylesheets/bootstrap.min.css" >
< link rel = "stylesheet" href = "../stylesheets/highlight-github.css" >
< link rel = "stylesheet" href = "../stylesheets/ebiten.css" >
< script src = "../scripts/googleanalytics.js" > < / script >
< header class = "navbar" > < div class = "container" >
2017-08-17 18:22:19 +02:00
< nav class = "d-flex flex-row" style = "width: 100%;" >
< div class = "mr-auto" >
< a class = "navbar-brand" href = "../" > Ebiten< / a >
< / div >
< ul class = "nav" >
< li class = "nav-item" > < a class = "nav-link" href = "https://github.com/hajimehoshi/ebiten" > GitHub< / a > < / li >
< li class = "nav-item" > < a class = "nav-link" href = "https://godoc.org/github.com/hajimehoshi/ebiten" > GoDoc< / a > < / li >
< li class = "nav-item" > < a class = "nav-link" href = "https://github.com/hajimehoshi/ebiten/wiki" > Wiki< / a >
2017-06-24 17:48:11 +02:00
< / ul >
< / nav >
2017-08-17 18:22:19 +02:00
< / div > < / header >
2017-06-24 17:48:11 +02:00
< main > < div class = "container" >
< h2 > Ebiten example - 2048< / h2 >
< iframe src = "2048.content.html" width = "420" height = "600" > < / iframe >
2017-08-17 18:22:19 +02:00
< pre class = "card" > < div class = "card-body" > < code class = "language-go" > // Please read examples/2048/main.go and examples/2048/2048/*.go< / code > < / div > < / pre >
2017-06-24 17:48:11 +02:00
< / div > < / main >
< footer > < div class = "container" >
< p > © 2013 Hajime Hoshi< / p >
< p > Code is licensed under < a href = "https://github.com/hajimehoshi/ebiten/blob/master/LICENSE" > the Apache License 2.0< / a > .< / p >
< 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 >
< script src = "../scripts/highlight.pack.js" > < / script >
< script > hljs . initHighlightingOnLoad ( ) ; < / script >