car.h
来自「This code was developed by my techer. :D」· C头文件 代码 · 共 16 行
H
16 行
#ifndef COMPGRAF_CAR_H
#define COMPGRAF_CAR_H
#include "interfaces/rendereable.h"
class Car: public Rendereable
{
public:
Car(float x, float y, float z, float rotx, float roty, float rotz);
~Car();
void draw();
private:
int carDisplayListId;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?