Skip to content

CCTweakedHaxePrograms/rednetWebFunctions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Rednet Web Functions

A macro to easily set up rednet style functions (only client side for now).

Usage:

class Api extends Client {
  function getCount(id:String):Int {return 0;}
}
function main() {
  var api: Api = new Api();
  trace(api.getCount("minecraft:diamond"));
}

ToDO:

  • Add Server side macros to make adding new functions easier
  • Add a security system to limit access to networked functions

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages