xeltica-studio / DotFeather

A closs-platform generic gameengine built on C#/.NET 6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DotFeatherのプリミティブクラスがタプル分割できるようにする

EbiseLutica opened this issue · comments

Summary

var vec = new Vector(20, 50);
var (x, y) = vec;
Console.WriteLine(x); // 20
Console.WriteLine(y); // 50

みてーなやつ