blob: 0a551e8ae4de6c11019bfb985986c2910da5d112 (
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 "io_task.h"
namespace AsuraEngine
{
namespace IO
{
///
/// дһύһtableδؽ
///
class IOBatchTask ASURA_FINAL : public AEThreading::Task
{
public:
private:
///
/// ÿһĽṹ£
/// { path = "", }
///
Luax::LuaxMemberRef m_Tasks;
};
}
}
#endif
|