2022-03-24 13:23:42 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
|
|
QtObject {
|
2022-04-30 07:27:56 +00:00
|
|
|
// Client configuration
|
2022-03-24 13:23:42 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
// Player property of client
|
|
|
|
property string screenName: ""
|
|
|
|
property string password: ""
|
2022-03-24 13:23:42 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
// Client data
|
|
|
|
property int roomCapacity: 0
|
|
|
|
property int roomTimeout: 0
|
2022-03-24 13:23:42 +00:00
|
|
|
}
|