Creating Your First Module
Module Definition
// modules/equippables/module.rell
module;
import lib.yours;Data Model
// modules/equippables/model.rell
entity equippable {
key yours.token; // Reference to the underlying Yours token
}
entity occupying_slot {
key equippable, name: text; // Specifies which slots this equippable occupies
}Basic Functions
Last updated