mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 19:58:13 +08:00
432a306de0
* addplayer and removeplayer * add sqlite3 library and remove comment in library headers * setup database system
13 lines
217 B
QML
13 lines
217 B
QML
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
// Client configuration
|
|
|
|
// Player property of client
|
|
property string screenName: ""
|
|
property string password: ""
|
|
|
|
// Client data
|
|
property int roomCapacity: 0
|
|
}
|