-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation capabilities to template (#66)
- Loading branch information
Showing
10 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Godot 4+ specific ignores | ||
.godot/ | ||
game/bin/summator/* | ||
src/gen/* | ||
.sconsign*.dblite | ||
|
||
# Binaries | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="Summator" inherits="RefCounted" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/godotengine/godot/master/doc/class.xsd"> | ||
<brief_description> | ||
Very short and brief description. | ||
</brief_description> | ||
<description> | ||
This is a very long description. You can use [b]bold[/b], [i]italic[/i], [u]underlined[/u], [code]code[/code] and other cool things supported by BBCode tags. | ||
</description> | ||
<tutorials> | ||
<link title="Summator Module Docs">https://docs.godotengine.org/en/stable/contributing/development/core_and_modules/custom_modules_in_cpp.html</link> | ||
<link title="GDExtensionSummator GitHub">https://github.com/paddy-exe/GDExtensionSummator</link> | ||
</tutorials> | ||
<methods> | ||
<method name="add"> | ||
<return type="void" /> | ||
<param index="0" name="value" type="int" default="1" /> | ||
<description> | ||
Add value to the Summator instance. | ||
</description> | ||
</method> | ||
<method name="get_total" qualifiers="const"> | ||
<return type="int" /> | ||
<description> | ||
Returns the total amount saved in the Summator instance. | ||
</description> | ||
</method> | ||
<method name="reset"> | ||
<return type="void" /> | ||
<description> | ||
Resets the amount of the Summator instance to zero. | ||
</description> | ||
</method> | ||
</methods> | ||
</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
entry_symbol = "summator_library_init" | ||
compatibility_minimum = 4.1 | ||
reloadable = true | ||
|
||
[libraries] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.