Commit de8a42ef authored by guillaume's avatar guillaume

initialization of Doxygen

parent 712826ad
...@@ -2,9 +2,11 @@ ...@@ -2,9 +2,11 @@
build build
raylib raylib
doc/html
.vscode/
# Generated files: # Generated files:
nw-* nw-*
config config
*.o *.o
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -23,3 +23,7 @@ windows: ...@@ -23,3 +23,7 @@ windows:
clean: clean:
@make -C src clean @make -C src clean
docs:
@doxygen Doxyfile
# NetWorld - Documentation
\ No newline at end of file
...@@ -15,7 +15,15 @@ struct Str_NetWorld { ...@@ -15,7 +15,15 @@ struct Str_NetWorld {
typedef struct Str_NetWorld NetWorld; typedef struct Str_NetWorld NetWorld;
// Constructor / Destructor // Constructor / Destructor
NetWorld * NetWorld_new(int aSize); /**
* @brief Allocate the memory to store a NetWorld.
* @return The pointer to the new NetWorld.
*/
NetWorld * NetWorld_new(
//! the number of Nodess
int aSize
);
void NetWorld_delete(NetWorld * self); void NetWorld_delete(NetWorld * self);
// Initialization // Initialization
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment