Android Open Source - ValentinesDayHearts Pos And Angle






From Project

Back to project page ValentinesDayHearts.

License

The source code is released under:

Apache License

If you think the Android project ValentinesDayHearts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.app;
//from w  w w.  jav  a  2 s .  c om
import com.badlogic.gdx.math.Vector2;

public class PosAndAngle {
  public Vector2 Position;
  public float Angle;
  
  public PosAndAngle() {
  }
  
  public PosAndAngle(Vector2 position, float angle) {
    Position = position;
    Angle = angle;
  }
}




Java Source Code List

com.app.ColorUtils.java
com.app.DesktopStarter.java
com.app.FixtureAtlas.java
com.app.Heart.java
com.app.PosAndAngle.java
com.app.ValentinesDayHeartsActivity.java
com.app.ValentinesDayHearts.java