Commit de8a42ef authored by guillaume's avatar guillaume

initialization of Doxygen

parent 712826ad
......@@ -2,9 +2,11 @@
build
raylib
doc/html
.vscode/
# Generated files:
nw-*
config
*.o
\ No newline at end of file
*.o
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -23,3 +23,7 @@ windows:
clean:
@make -C src clean
docs:
@doxygen Doxyfile
# NetWorld - Documentation
\ No newline at end of file
......@@ -15,7 +15,15 @@ struct Str_NetWorld {
typedef struct Str_NetWorld NetWorld;
// 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);
// 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