• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * @param spell The text of spell, often distributed on scrolls
3  * @return Spell ID for future casts
4  */
magicnull5 fun magic(spell: String): Int {
6 
7 }
8 
9 /**
10  * @param spell Spell ID of previously casted spell
11  * @return Spell ID for future casts
12  */
magicnull13 fun magic(spell: Int): Int {
14 
15 }