mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-09 04:41:08 +00:00
Migrate back to Kotlin
This commit is contained in:
parent
c85413b7e0
commit
4fd93e904f
7 changed files with 23 additions and 109 deletions
18
lib/src/main/kotlin/tribufu/TribuFu.kt
Normal file
18
lib/src/main/kotlin/tribufu/TribuFu.kt
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
// Copyright (c) TribuFu. All Rights Reserved
|
||||
|
||||
package tribufu
|
||||
|
||||
class TribuFu {
|
||||
/**
|
||||
* A native method that is implemented by the 'TribuFu' native library, which is packaged with
|
||||
* this library.
|
||||
*/
|
||||
// external fun Hello(): Int
|
||||
|
||||
companion object {
|
||||
// Used to load the 'TribuFu' library on application startup.
|
||||
init {
|
||||
//System.loadLibrary("TribuFu")
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue