Main.hx 209 B

12345678910111213
  1. class Main {
  2. static function main() {}
  3. }
  4. abstract Color(Int) from Int to Int {
  5. var argb(never,set):Int;
  6. inline function set_argb(v) return this = v;
  7. public function copyFrom(c:Color) {
  8. argb = c;
  9. }
  10. }