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(
7  file_buffered,
8  iter_collect_into,
9  iterator_try_collect,
10  str_as_str,
11  try_blocks
12)]
13
14pub mod battle;
15pub mod behavior;
16pub mod chat;
17pub mod city;
18pub mod continent;
19pub mod error;
20pub mod ethic;
21pub mod event;
22pub mod hooks;
23pub mod infrastructure;
24pub mod military;
25pub mod npc;
26pub mod player;
27pub mod ranking;
28pub mod report;
29pub mod resources;
30pub mod round;
31pub mod ruler;
32pub mod savedata;
33pub mod world;