* @return a CTexture or CTexture with null Texture if the file doesnt exist
*/
public static CTexture loadTexture(String name){
if(name == null || name.isEmpty()) return null;
if(textures.containsKey(name) == false){
textures.put(name, new CTexture().create(name));
}
return textures.get(name);
}