1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-07-09 01:57:09 +02:00

Implement both the uppercase and lowercase versions of properties for base types.

This commit is contained in:
Sandu Liviu Catalin
2016-07-17 15:39:59 +03:00
parent 44a855e2b6
commit 67e2ba9107
10 changed files with 28 additions and 0 deletions
+4
View File
@@ -712,6 +712,10 @@ void Register_Color4(HSQUIRRELVM vm)
// Static Members
.SetStaticValue(_SC("Delim"), &Color4::Delim)
// Member Variables
.Var(_SC("r"), &Color4::r)
.Var(_SC("g"), &Color4::g)
.Var(_SC("b"), &Color4::b)
.Var(_SC("a"), &Color4::a)
.Var(_SC("R"), &Color4::r)
.Var(_SC("G"), &Color4::g)
.Var(_SC("B"), &Color4::b)