nil-core 0.5.6

Multiplayer strategy game
Documentation
// Copyright (C) Call of Nil contributors
// SPDX-License-Identifier: AGPL-3.0-only

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_favicon_url = "https://nil.dev.br/favicon.png")]
#![feature(
  const_clone,
  const_cmp,
  const_default,
  const_convert,
  const_ops,
  const_option_ops,
  const_result_trait_fn,
  const_trait_impl,
  const_try,
  derive_const,
  iter_collect_into,
  str_as_str,
  try_blocks
)]

pub mod battle;
pub mod behavior;
pub mod chat;
pub mod city;
pub mod continent;
pub mod error;
pub mod ethic;
pub mod event;
pub mod hooks;
pub mod infrastructure;
pub mod military;
pub mod npc;
pub mod player;
pub mod ranking;
pub mod report;
pub mod resources;
pub mod round;
pub mod ruler;
pub mod savedata;
pub mod world;