Get prefix removed from getters

This commit is contained in:
onyx-and-iris 2022-12-08 10:24:52 +00:00
parent b116f04f51
commit 4c54d924b3

View File

@ -37,8 +37,8 @@ func (m *button) String() string {
return fmt.Sprintf("MacroButton%d", m.index) return fmt.Sprintf("MacroButton%d", m.index)
} }
// GetState returns the value of the State parameter // State returns the value of the State parameter
func (m *button) GetState() bool { func (m *button) State() bool {
return m.getter(1) return m.getter(1)
} }
@ -47,8 +47,8 @@ func (m *button) SetState(val bool) {
m.setter(val, 1) m.setter(val, 1)
} }
// GetStateOnly returns the value of the StateOnly parameter // StateOnly returns the value of the StateOnly parameter
func (m *button) GetStateOnly() bool { func (m *button) StateOnly() bool {
return m.getter(2) return m.getter(2)
} }
@ -57,8 +57,8 @@ func (m *button) SetStateOnly(val bool) {
m.setter(val, 2) m.setter(val, 2)
} }
// GetTrigger returns the value of the Trigger parameter // Trigger returns the value of the Trigger parameter
func (m *button) GetTrigger() bool { func (m *button) Trigger() bool {
return m.getter(2) return m.getter(2)
} }