Associated compile fixes. Some of these are dirty and temporary-ish.

This commit is contained in:
hispidence 2022-01-27 23:38:47 +00:00
parent 0834bf805f
commit cd9c3e7544
11 changed files with 104 additions and 39 deletions

View file

@ -51,3 +51,7 @@ void GameScriptSkyLayer::SetColor(GameScriptColor const & col)
B = col.GetB();
}
//todo can this return an RGBAColor8Byte instead?
GameScriptColor GameScriptSkyLayer::GetColor() const {
return GameScriptColor{ R, G, B };
}