#pragma once #include "Proxy.h" namespace crepe { template Proxy & Proxy::operator = (const T & val) { this->val->set(val); return *this; } template Proxy::operator const T & () const { return this->val->get(); } }