Navigation Menu

Skip to content

Masahiro11/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.5%
  • Objective-C 37.1%
  • C 1.6%
  • C++ 0.4%
  • CSS 0.2%
  • Swift 0.1%
  • Other 0.1%