mirror of
https://github.com/BigJk/end_of_eden.git
synced 2026-02-06 10:48:09 +00:00
16 lines
338 B
Go
16 lines
338 B
Go
package game
|
|
|
|
import "github.com/BigJk/end_of_eden/luhelp"
|
|
|
|
// Enemy represents a definition of a enemy that can be linked from a Actor.
|
|
type Enemy struct {
|
|
ID string
|
|
Name string
|
|
Description string
|
|
InitialHP int
|
|
MaxHP int
|
|
Look string
|
|
Color string
|
|
Callbacks map[string]luhelp.OwnedCallback
|
|
}
|