summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_waypointlist.hpp.sq
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-10-04 18:16:44 +0000
committerrubidium <rubidium@openttd.org>2009-10-04 18:16:44 +0000
commite7fb5f00e7b97c235aaad45844ad816f0df5e31e (patch)
tree34410fc9fe4e9fa838a7ceaa85537743f30ee14c /src/ai/api/ai_waypointlist.hpp.sq
parent54806e7437efdc3e9cd71a8a778671ea5a4b10b0 (diff)
downloadopenttd-e7fb5f00e7b97c235aaad45844ad816f0df5e31e.tar.xz
(svn r17697) -Codechange: coding style in the automatically generated squirrel wrapper code
Diffstat (limited to 'src/ai/api/ai_waypointlist.hpp.sq')
-rw-r--r--src/ai/api/ai_waypointlist.hpp.sq6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ai/api/ai_waypointlist.hpp.sq b/src/ai/api/ai_waypointlist.hpp.sq
index ea6319d26..c2f70c3ef 100644
--- a/src/ai/api/ai_waypointlist.hpp.sq
+++ b/src/ai/api/ai_waypointlist.hpp.sq
@@ -20,7 +20,8 @@ namespace SQConvert {
template <> int Return<AIWaypointList *>(HSQUIRRELVM vm, AIWaypointList *res) { if (res == NULL) { sq_pushnull(vm); return 1; } res->AddRef(); Squirrel::CreateClassInstanceVM(vm, "AIWaypointList", res, NULL, DefSQDestructorCallback<AIWaypointList>); return 1; }
}; // namespace SQConvert
-void SQAIWaypointList_Register(Squirrel *engine) {
+void SQAIWaypointList_Register(Squirrel *engine)
+{
DefSQClass <AIWaypointList> SQAIWaypointList("AIWaypointList");
SQAIWaypointList.PreRegister(engine, "AIAbstractList");
SQAIWaypointList.AddConstructor<void (AIWaypointList::*)(), 1>(engine, "x");
@@ -37,7 +38,8 @@ namespace SQConvert {
template <> int Return<AIWaypointList_Vehicle *>(HSQUIRRELVM vm, AIWaypointList_Vehicle *res) { if (res == NULL) { sq_pushnull(vm); return 1; } res->AddRef(); Squirrel::CreateClassInstanceVM(vm, "AIWaypointList_Vehicle", res, NULL, DefSQDestructorCallback<AIWaypointList_Vehicle>); return 1; }
}; // namespace SQConvert
-void SQAIWaypointList_Vehicle_Register(Squirrel *engine) {
+void SQAIWaypointList_Vehicle_Register(Squirrel *engine)
+{
DefSQClass <AIWaypointList_Vehicle> SQAIWaypointList_Vehicle("AIWaypointList_Vehicle");
SQAIWaypointList_Vehicle.PreRegister(engine, "AIAbstractList");
SQAIWaypointList_Vehicle.AddConstructor<void (AIWaypointList_Vehicle::*)(VehicleID vehicle_id), 2>(engine, "xi");