Make debugInfo optional in Executable class.

This commit is contained in:
2025-08-13 21:44:17 +02:00
parent 12027fe740
commit c74c0134ac

View File

@@ -16,7 +16,7 @@ data class Executable(
@JvmField val data: ByteArray,
@JvmField val graphics: Array<ByteArray>,
val sourceName: String,
@JvmField val debugInfo: DebugInfo
@JvmField val debugInfo: DebugInfo?
) {
enum class Format(val formatName: String) {
Orc1("orc1");