예제 #1
0
    // Token: 0x06000480 RID: 1152 RVA: 0x0003C5F0 File Offset: 0x0003A9F0
    public static void SetStudentEyeColor(int studentID, Color value)
    {
        string text = studentID.ToString();

        KeysHelper.AddIfMissing("StudentEyeColor_", text);
        GlobalsHelper.SetColor("StudentEyeColor_" + text, value);
    }
    // Token: 0x0600162F RID: 5679 RVA: 0x000B9C58 File Offset: 0x000B7E58
    public static void SetStudentEyeColor(int studentID, Color value)
    {
        string text = studentID.ToString();

        KeysHelper.AddIfMissing("Profile_" + GameGlobals.Profile + "_StudentEyeColor_", text);
        GlobalsHelper.SetColor(string.Concat(new object[]
        {
            "Profile_",
            GameGlobals.Profile,
            "_StudentEyeColor_",
            text
        }), value);
    }