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 Microsoft.Xna.Framework; | |
public class PlatformController : IResetable | |
{ | |
private Vector2 _startPos = Vector2.Zero; | |
private Vector2 _stopPos = Vector2.Zero; | |
private float _speed = 0f; | |
private bool _beingHeld = false; |
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
package org.eman.gist; | |
import java.io.File; | |
import java.io.FilenameFilter; | |
import java.io.IOException; | |
import java.util.Collection; | |
import java.util.Arrays; | |
/** | |
* Print out a list of all files with a particular extension from a directory. | |
* @author eman41 |
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
Show hidden characters
{ | |
"folders": | |
[ | |
{ | |
"path": "/C/workspace/project" | |
} | |
], | |
"settings": | |
{ | |
"SublimeLinter": |
NewerOlder