Skip to main content

NRC_InstrDataPALREAL

Data class of the instruction PALREAL

class NRC_InstrDataPALREAL : public NRC_InstrDataBase
{
public:
NRC_InstrDataPALREAL() : id(1), moveType(1), vel(10), acc(10), dec(10), pl(0) {};
NRC_InstrDataPALREAL(int id, int moveType, int vel, int acc, int dec, int pl) : id(id), moveType(moveType), vel(vel), acc(acc), dec(dec), pl(pl) {};
virtual int NRC_GetInstrFromData(InstrData&);
int id;
int moveType;
int vel;
int acc;
int dec;
int pl;
};

Sample code