Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
adding stuff for ara skills
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Nov 1, 2019
1 parent 1a54053 commit 6dc49f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/java/com/andromeda/araserver/skills/SocialSkills.kt
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
package com.andromeda.araserver.skills
//this is where ara is nice to people :)
class SocialSkills {
private fun doYouLike(thing:String){
fun doYouLike(thing:String){
when (thing){
"star trek"-> TODO()
"star wars"-> TODO()
"google"-> TODO()
}
}
fun mainFun(){

}
fun favorite(thing: String){
when (thing){
"colour" -> TODO()
}
}
}

0 comments on commit 6dc49f0

Please sign in to comment.