go_dreamfactory/modules/battle/fight/fightlog.go
2022-09-08 17:25:12 +08:00

15 lines
298 B
Go

package fight
type FightLog struct {
Commands []interface{}
}
/// <summary>
/// 增加战报日志
/// </summary>
/// <param name="log"></param>
func (this *FightLog) AddCommand(log interface{}) {
//FightDebug.Log($"<color=#35ff02>战报:{log.ToString()}</color>");
// this.Commands = app
}