dofus-framework 0.1.16

This crate contains modules and functions that help sustain a dofus emulator binary application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct RealmConfig {
    pub name: String,
    pub address: String,
    pub port: u16,
}

impl RealmConfig {
    pub fn new(name: String, address: String, port: u16) -> Self {
        RealmConfig {
            name,
            address,
            port,
        }
    }
}