aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com>2022-07-16 21:12:23 +0200
committerLibravatar IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com>2022-07-16 21:12:23 +0200
commit9a750a6688ad923d990d11dc464f783210b50678 (patch)
tree90d7658c5e6173946bfb89c46d2cd43fd3f9bf90 /rust/src/lib.rs
parent9c061b9997d0add3298b1230426dd7332b91420f (diff)
parentf561a1f69d5fda68e0a23ab04f448e9364b2968c (diff)
download2022-9a750a6688ad923d990d11dc464f783210b50678.tar.gz
2022-9a750a6688ad923d990d11dc464f783210b50678.tar.bz2
2022-9a750a6688ad923d990d11dc464f783210b50678.zip
Merge branch 'BuffSystem' into GoalPost
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r--rust/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index 401b668..1be319a 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -6,6 +6,8 @@ mod buff_trait;
mod buff_ball;
mod buff_extra;
pub mod goal_trigger;
+mod test;
+mod basic_die;
use gdnative::prelude::{godot_init, InitHandle};
@@ -14,6 +16,8 @@ fn init(handle: InitHandle) {
handle.add_class::<game::Game>();
handle.add_class::<spinning_cube::SpinningCube>();
handle.add_class::<goal_trigger::GoalTriggerZone>();
+ handle.add_class::<test::SpinningCubeReverse>();
+ handle.add_class::<basic_die::BasicDie>();
}
// macros that create the entry-points of the dynamic library.