Public Class SkillBranch
Inherits DiSkillV2
' unique skill used to bind similar skills
' contains collection of skills
' mutates active skill if detects conjuration
' mutates active skill if algorithm results in
' negative feedback
' positive feedback negates active...
vb.net:
Public Class SkillHubAlgDispenser
' Super class to output an algorithm out of a selection of skills
' Engage the hub with dispenseAlg and return the value to outAlg attribute
' of the containing skill (which houses the skill hub)
' This module enables using a selection of...
class SkillBranch: DiSkillV2 {
// unique skill used to bind similar skills
/*
* contains collection of skills
* mutates active skill if detects conjuration
* mutates active skill if algorithm results in
* negative feedback
* positive feedback negates active skill...
class SkillBranch: DiSkillV2 {
// unique skill used to bind similar skills
/*
* contains collection of skills
* mutates active skill if detects conjuration
* mutates active skill if algorithm results in
* negative feedback
* positive feedback negates active skill...
class SkillHubAlgDispenser {
// Super class to output an algorithm out of a selection of skills
// Engage the hub with dispenseAlg and return the value to outAlg attribute
// of the containing skill (which houses the skill hub)
// This module enables using a selection of 1 skill...
Public Class DiSkillBundle
Inherits DiSkillV2
Private ReadOnly axSkillBundle As New AXSkillBundle()
Public Overrides Sub Input(ByVal ear As String, ByVal skin As String, ByVal eye As String)
Dim a1 As AlgorithmV2 = axSkillBundle.DispenseAlgorithm(ear, skin...
vb.net
Public Class AlgorithmV2
Private priority As Integer = 4
Private alg As Algorithm = Nothing
Public Sub New(ByVal priority As Integer, ByVal alg As Algorithm)
Me.priority = priority
Me.alg = alg
End Sub
Public Function...
vb.net:
Public Class DiBicameral
Inherits DiSkillV2
' DiBicameral bicameral = New DiBicameral()
' bicameral.msgCol.addMSGV2("02:57", "test run ok")
' Add # for messages that engage other skills
Public msgCol As New TimedMessages()
Public...