Back to project page CircleWorldGDX.
The source code is released under:
MIT License
If you think the Android project CircleWorldGDX listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fdangelo.circleworld.universeengine.tilemap; public class TileHitFlags { public static final int None = 0; public static final int Left = 1 << 0; public static final int Right = 1 << 1; public static final int Up = 1 << 2; public static final int Down = 1 << 3; }