- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRT_Task.h
More file actions
Latest commit
24 lines (17 loc) · 390 Bytes
/
Copy pathRT_Task.h
File metadata and controls
24 lines (17 loc) · 390 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _RT_TASK_H
#define_RT_TASK_H
#include<math.h>
#include<stdio.h>
#include"CVector3.h"
#include"Engine.h"
usingnamespacestd;
classRT_Task {
public:
RT_Task();
virtual~RT_Task(){};
virtualvoidrun() = 0;
voidsetDescription(constchar* const taskDescription);
private:
char description[DEBUG_STRING_SIZE];
};
#endif