GITLAB

zhangqijia / Pro2DServer

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Pro2DServer
  • plugin
  • plugin.go
  • 5d9cf01c   plugin 热更 Browse Code »
    zhangqijia
    2022-03-01 18:54:44 +0800  
plugin.go 164 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11
package main

import (
	"fmt"
	"pro2d/src/components/net"
)

func IamPluginA(pkg net.MsgPkg) {
	fmt.Println("Hello, I am PluginB!")
	fmt.Println(pkg.Head.Length)
}