[cpp] Fixed name spacing.

This commit is contained in:
badlogic 2018-09-06 16:03:41 +02:00
parent 7c398be3b6
commit e06c4056ae
2 changed files with 10 additions and 10 deletions

View File

@ -79,18 +79,18 @@ void spine::Event::setStringValue(const spine::String &inValue) {
}
float Event::getVolume() {
float spine::Event::getVolume() {
return _volume;
}
void Event::setVolume(float inValue) {
void spine::Event::setVolume(float inValue) {
_volume = inValue;
}
float Event::getBalance() {
float spine::Event::getBalance() {
return _balance;
}
void Event::setBalance(float inValue) {
void spine::Event::setBalance(float inValue) {
_balance = inValue;
}

View File

@ -76,27 +76,27 @@ void spine::EventData::setStringValue(const spine::String &inValue) {
this->_stringValue = inValue;
}
const String &EventData::getAudioPath() {
const spine::String &spine::EventData::getAudioPath() {
return _audioPath;
}
void EventData::setAudioPath(const String &inValue) {
void spine::EventData::setAudioPath(const spine::String &inValue) {
_audioPath = inValue;
}
float EventData::getVolume() {
float spine::EventData::getVolume() {
return _volume;
}
void EventData::setVolume(float inValue) {
void spine::EventData::setVolume(float inValue) {
_volume = inValue;
}
float EventData::getBalance() {
float spine::EventData::getBalance() {
return _balance;
}
void EventData::setBalance(float inValue) {
void spine::EventData::setBalance(float inValue) {
_balance = inValue;
}