diff options
author | IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> | 2022-07-16 15:03:50 +0200 |
---|---|---|
committer | IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> | 2022-07-16 15:03:50 +0200 |
commit | 4435579498beefeb75b524111d24b1cb922cd22a (patch) | |
tree | 026b0ad61d6abb5deb736e69015a897a3283c6cf /rust/src/lib.rs | |
parent | f2ad01fe09709bc32b9b06a0aecc4c1b4d0a870d (diff) | |
parent | 9739b6d40258440cef4f7664f501efa81497263b (diff) | |
download | 2022-4435579498beefeb75b524111d24b1cb922cd22a.tar.gz 2022-4435579498beefeb75b524111d24b1cb922cd22a.tar.bz2 2022-4435579498beefeb75b524111d24b1cb922cd22a.zip |
Merge branch 'BuffSystem'
Diffstat (limited to '')
-rw-r--r-- | rust/src/lib.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 7958395..534955f 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -1,6 +1,10 @@ mod game; mod spinning_cube; -mod test; +mod buff_bounce; +mod buff_phase; +mod buff_trait; +mod buff_ball; +mod buff_extra; use gdnative::prelude::{godot_init, InitHandle}; @@ -8,7 +12,6 @@ use gdnative::prelude::{godot_init, InitHandle}; fn init(handle: InitHandle) { handle.add_class::<game::Game>(); handle.add_class::<spinning_cube::SpinningCube>(); - handle.add_class::<test::SpinningCubeReverse>(); } // macros that create the entry-points of the dynamic library. |