This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.UI; | |
| using System.Web.UI.WebControls; | |
| namespace Linqerino { | |
| public partial class Posts1 : Page { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created by Timon on 20-11-13. | |
| */ | |
| var TiledMap = function (path) { | |
| var request = new XMLHttpRequest(); | |
| request.open("GET", path, false); | |
| request.send(null); | |
| var map = JSON.parse(request.responseText); | |
| this.load(map); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Camera { | |
| private final Player player; | |
| private final Vector2f size; | |
| private final Level level; | |
| private final Rectangle bounds; | |
| public Camera(Player player, Level level, Vector2f size, Rectangle bounds) { | |
| this.player = player; | |
| this.level = level; |
NewerOlder