-
Updated
Jul 26, 2021 - C#
modding
Here are 1,162 public repositories matching this topic...
-
Updated
Jul 18, 2021 - C++
-
Updated
Jul 25, 2021 - Java
-
Updated
Jul 20, 2021 - C++
-
Updated
Jul 26, 2021 - C#
-
Updated
Jul 25, 2021 - C#
-
Updated
Jul 21, 2021 - C#
-
Updated
Jul 23, 2021 - Python
-
Updated
Jul 26, 2021 - C++
-
Updated
Jul 12, 2021 - C++
Apparently it is possible to add Python modules to the game with the modloader. Unfortunately there is no documentation about the api.
-
Updated
Jun 15, 2020 - C#
-
Updated
Jul 19, 2021 - C
File API
nyan should provide a file api that we can inherit from.
Then we can natively interface to the openage file abstraction and do not need to read the whole file in the engine. Basically a class nyan::Filesystem that is specialized by openage. Ideally, the returned file lazily accesses all data through openage::util::File.
-
Updated
Jan 15, 2020 - C#
-
Updated
Jun 24, 2019 - C#
Improve this page
Add a description, image, and links to the modding topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the modding topic, visit your repo's landing page and select "manage topics."
I just noticed the ArrayStack does not have the methods Peek, Erase or Clear.
So for peeking you basically have to pop and push to get the top value.
Same with erasing, you need a variable to store the result from pop just to delete.