All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artemis.component.Basic Maven / Gradle / Ivy

The newest version!
package com.artemis.component;

import com.artemis.Component;

/**
 * @author Daan van Yperen
 */
public class Basic extends Component {
    public int x;
    public Basic o;
    public String s;

    public void set(int x) { this.x=x; }
    public void set(int x, Basic o) { this.x=x; this.o = o; }

    public String custom() { return "test";}
    public String custom( String banana ) { return banana; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy