4244b6985a
Actually start to parse things
13 lines
147 B
Go
13 lines
147 B
Go
package darkstorm
|
|
|
|
type Key struct {
|
|
Perm map[string]bool
|
|
ID string
|
|
AppID string
|
|
Death int
|
|
}
|
|
|
|
func (k Key) GetID() string {
|
|
return k.ID
|
|
}
|