This is an iOS chat client for Kirandur, a multiplayer RPG. Reimplements the LiteNetLib UDP protocol in Swift for reliable ordered messaging. Renders server-driven UI via a RemoteForms widget system for login, character creation and more inside the client. Uses msgpack-swift for serialization, Keychain for credentials, and targets iOS 18.6+/Xcode 26+. No message persistence yet. No auto-reconnect. Game-specific packets (movement, combat, etc.) are silently ignored. No profile viewing yet. Assisted by Claude Code (Opus 4.6)
17 lines
294 B
Swift
17 lines
294 B
Swift
//
|
|
// KDChatTests.swift
|
|
// KDChatTests
|
|
//
|
|
// Created by Blake Oliver on 3/21/26.
|
|
//
|
|
|
|
import Testing
|
|
@testable import KDChat
|
|
|
|
struct KDChatTests {
|
|
|
|
@Test func example() async throws {
|
|
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
|
|
}
|
|
|
|
}
|