| 126 | |
| 127 | |
| 128 | bool cNoteEntity::LoadFromJson(const Json::Value & a_Value) |
| 129 | { |
| 130 | |
| 131 | m_PosX = a_Value.get("x", 0).asInt(); |
| 132 | m_PosY = a_Value.get("y", 0).asInt(); |
| 133 | m_PosZ = a_Value.get("z", 0).asInt(); |
| 134 | |
| 135 | m_Pitch = (char)a_Value.get("p", 0).asInt(); |
| 136 | |
| 137 | return true; |
| 138 | } |
| 139 | |
| 140 | |
| 141 |