Skip to content

najikadri/Construct2PluginMaker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Construct2PluginMaker

plugin maker for Construct 2 developers

##Useful Code Snippet Copy any file in Java :

public static void copyFiles (File in, File out) {
		try {
			InputStream input = new FileInputStream(in);
			OutputStream output = new FileOutputStream(out);
			
			byte [] buffer = new byte[1024];
			
			int length;
			
			 while ((length = input.read(buffer)) > 0){
				 
	    	    	output.write(buffer, 0, length);
	 
	    	    }
			 
			 input.close();
			 output.close();
			
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

About

plugin maker for Construct 2 developers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages