20 lines
411 B
C
20 lines
411 B
C
//
|
|
// Created by xixiliadorabarry on 1/24/19.
|
|
//
|
|
#ifndef CONSTANT_H
|
|
#define CONSTANT_H
|
|
|
|
#include "additions/additions.h"
|
|
const int BIG = 1;
|
|
const int SMALL = 0;
|
|
const int SRC_WIDTH = 320;
|
|
const int SRC_HEIGHT = 240;
|
|
const int CLOCKWISE = 1;
|
|
const int ANTICLOCKWISE = -1;
|
|
const float ATTACK_DISTANCE = 718.0;//cm
|
|
const double ARMOR_CENTER_TO_CYCLE_CENTER = 75.0;//cm
|
|
|
|
|
|
#endif //CONSTANT_H
|
|
|