]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/entity/light.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / plugins / entity / light.h
index 5c807ab270342cb9e58695bb05841c614d35b50d..ac46a3b5d1d58fd99ecef45a25cf34a84f625620 100644 (file)
 #if !defined( INCLUDED_LIGHT_H )
 #define INCLUDED_LIGHT_H
 
-namespace scene
-{
-class Node;
+namespace scene {
+    class Node;
 }
 class EntityClass;
 
-scene::Node& New_Light( EntityClass* eclass );
-enum LightType
-{
-       LIGHTTYPE_DEFAULT,
-       LIGHTTYPE_RTCW,
-       LIGHTTYPE_DOOM3
+scene::Node &New_Light(EntityClass *eclass);
+
+enum LightType {
+    LIGHTTYPE_DEFAULT,
+    LIGHTTYPE_RTCW,
+    LIGHTTYPE_DOOM3
 };
-void Light_Construct( LightType lightType );
+
+void Light_Construct(LightType lightType);
+
 void Light_Destroy();
 
 #endif