summaryrefslogtreecommitdiff
path: root/Runtime/FileSystem/File.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-26 09:48:47 +0800
committerchai <chaifix@163.com>2021-10-26 09:48:47 +0800
commitef7aedf5f272c52247d8ee9522d7b2896d21af63 (patch)
treec1259190bd51ed1225017507cd01612cc5a73a8c /Runtime/FileSystem/File.h
parente7c760c884d90ef22fe46508b18081fe6e0f9291 (diff)
*misc
Diffstat (limited to 'Runtime/FileSystem/File.h')
-rw-r--r--Runtime/FileSystem/File.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Runtime/FileSystem/File.h b/Runtime/FileSystem/File.h
index 19e780d..b0d720c 100644
--- a/Runtime/FileSystem/File.h
+++ b/Runtime/FileSystem/File.h
@@ -1,9 +1,12 @@
#pragma once
#include "Runtime/Lua/LuaHelper.h"
-class File
+class File : public LuaBind::NativeClass<File>
{
public:
+ File(LuaBind::VM* vm);
+ char* data;
+ int length;
-};
+}; \ No newline at end of file