これは Gauge にある combine メソッドです。
|
public func combine(node: GaugeNode, center: WidgetNotificationSystem) { |
|
node.registerTo(center: center, id: self.id) |
|
} |
しかし、protocol extension で実装されている様に思います。
|
public extension DataOutputPlugIn { |
|
func combine(node: Node, center: WidgetNotificationSystem) { |
|
node.registerTo(center: center, id: self.id) |
|
} |
|
} |
これは Gauge にある
combineメソッドです。GameWidget/Sources/GameWidget/Gauge/Gauge.swift
Lines 62 to 64 in bc42c48
しかし、protocol extension で実装されている様に思います。
GameWidget/Sources/GameWidget/Commons/Widget/Widget+PlugIns.swift
Lines 43 to 47 in bc42c48