Skip to content
/ Ne Public

A library that helps you simply create arcade game using few lines.

License

Notifications You must be signed in to change notification settings

hostops/Ne

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ne

GitHub Maintenance
A library that helps you simply create arcade game using few lines. Purpose of project Ne is to make children interested in coding.

GitHub issues GitHub closed issues GitHub forks GitHub stars

You can try your code online: https://ne.etilk.com/

Simple example

var nextRoom = new Room();
nextRoom.addItem(Items.angryRobot());
nextRoom.addItem(Items.helper());
nextRoom.addItem(Items.bonus());
mainRoom.addRoom(nextRoom, Direction.LEFT);

Room loop example

var leftRoom = mainRoom.newLeftRoom(80);
var upRoom = mainRoom.newUpRoom(60);
var thirdRoom = leftRoom.newUpRoom(40);
thirdRoom.addRoom(upRoom, Direction.RIGHT);	
mainRoom.addItem(new Item(0.05, 0.05));
mainRoom.addItem(new Item(0.05, 0.05));
mainRoom.addItem(new Item(0.05, 0.05));
leftRoom.addItem(new Item(0.05, 0.05));
leftRoom.addItem(new Item(0.05, 0.05));
thirdRoom.addItem(new Item(0.05, 0.05));

And your game is running.

Modules

  • Code editor
  • UI
    • Interface
  • Game
    • Items
    • GamePlay

Releases

No releases published

Packages

No packages published