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
+3
View File
@@ -653,6 +653,9 @@ void Register_Color3(HSQUIRRELVM vm)
// Static Members
.SetStaticValue(_SC("Delim"), &Color3::Delim)
// Member Variables
.Var(_SC("r"), &Color3::r)
.Var(_SC("g"), &Color3::g)
.Var(_SC("b"), &Color3::b)
.Var(_SC("R"), &Color3::r)
.Var(_SC("G"), &Color3::g)
.Var(_SC("B"), &Color3::b)