Skip to content

ryutamaki/RobotWar-Cpp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Robot War

In this exercise, you'll learn a bit about basic artificial intelligence through a friendly competition. During Robot Wars you'll program the behavior a virtual robot. Your robot will go head to head with other robots in the Robot Wars Showdown!

  • Create a new Robot by inheriting from the RobotCpp class:

      class SimpleRobotCpp : public RobotCpp 
      {
        
      };
    
  • Define your Robot to participate in the Battle by placing the Class name of the robot in "Configuration.h"

      #define ROBOT_ONE_CLASS SimpleRobotCpp
      #define ROBOT_TWO_CLASS MyRobotCpp
    
  • The available C++ interface is documented in RobotCpp.h and CppInterface.h.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 60.0%
  • Objective-C 30.7%
  • M 4.2%
  • C 3.3%
  • C++ 1.4%
  • CSS 0.2%
  • Other 0.2%