diff Engine/Tables/FrameTableInc.h @ 2499:68cdef6879a0

engine folder
author Ritor1
date Fri, 19 Sep 2014 02:57:42 +0600
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Engine/Tables/FrameTableInc.h	Fri Sep 19 02:57:42 2014 +0600
@@ -0,0 +1,26 @@
+#pragma once
+
+
+
+/*  322 */
+enum FRAME_TABLE_FLAGS
+{
+  FRAME_TABLE_MORE_FRAMES = 0x1,
+  FRAME_TABLE_FIRST = 0x4,
+};
+
+
+
+/*  359 */
+#pragma pack(push, 1)
+struct FrameTableTxtLine  //7C
+{
+  int uPropCount;
+  const char *pProperties[30];
+};
+#pragma pack(pop)
+
+
+FrameTableTxtLine* txt_file_frametable_parser(const char *str_to_parse, FrameTableTxtLine *tokens_table);
+
+FrameTableTxtLine *frame_table_txt_parser(const char *pString, FrameTableTxtLine *a2);
\ No newline at end of file