blob: d0e9fba1e309029b1bd990b500efdf635a319161 (
plain) (
tree)
|
|
use gdnative::api::*;
use gdnative::prelude::*;
pub trait Buff {
unsafe fn execute_buff(&mut self);
unsafe fn revert_buff(&mut self);
fn get_name(self) -> GodotString;
fn get_description(self) -> GodotString;
}
|