Skip to main content

nil_core/
lib.rs

1// Copyright (C) Call of Nil contributors
2// SPDX-License-Identifier: AGPL-3.0-only
3
4#![cfg_attr(docsrs, feature(doc_cfg))]
5#![doc(html_favicon_url = "https://nil.dev.br/favicon.png")]
6#![feature(iter_collect_into, str_as_str, try_blocks)]
7
8pub mod battle;
9pub mod behavior;
10pub mod chat;
11pub mod city;
12pub mod continent;
13pub mod error;
14pub mod ethic;
15pub mod event;
16pub mod hooks;
17pub mod infrastructure;
18pub mod military;
19pub mod npc;
20pub mod player;
21pub mod ranking;
22pub mod report;
23pub mod resources;
24pub mod round;
25pub mod ruler;
26pub mod savedata;
27pub mod world;