瀏覽代碼

Expose C++ love.event Message name and args fields so other code can access them.

Alex Szpakowski 7 年之前
父節點
當前提交
fc17ecba0d
共有 1 個文件被更改,包括 2 次插入4 次删除
  1. 2 4
      src/modules/event/Event.h

+ 2 - 4
src/modules/event/Event.h

@@ -49,10 +49,8 @@ public:
 	int toLua(lua_State *L);
 	static Message *fromLua(lua_State *L, int n);
 
-private:
-
-	std::string name;
-	std::vector<Variant> args;
+	const std::string name;
+	const std::vector<Variant> args;
 
 }; // Message