Copyright (c) 2014, Gregory Martin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
...
If you think the Android project candy-drop 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.gregfmartin.facetapper.utils;
/*www.java2s.com*/import com.badlogic.gdx.graphics.Color;
/**
* Rename for the {@link com.badlogic.gdx.graphics.Color} class.
*/publicclass Colour extends Color {
public Colour() {}
public Colour(float r, float g, float b, float a) {
super(r, g, b, a);
}
}