blob: a9355d50e646c32a4f6bc53c3fb3ea35f65970fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef _ASURA_IO_BATCH_TASK_H_
#define _ASURA_IO_BATCH_TASK_H_
#include "IOTask.h"
namespace AsuraEngine
{
namespace IO
{
///
/// дһύһtableδؽ
///
class IOBatchTask ASURA_FINAL : public AEThreading::Task
{
public:
private:
///
/// ÿһĽṹ£
/// { path = "", }
///
Luax::LuaxMemberRef m_Tasks;
};
}
}
#endif
|