Change uses for parapoly records to use $ always

This commit is contained in:
gingerBill
2021-06-14 11:43:35 +01:00
parent d4df325e0a
commit 3e7aabe6d8
13 changed files with 20 additions and 19 deletions

View File

@@ -13,7 +13,7 @@ Channel_Direction :: enum i8 {
Recv = -1,
}
Channel :: struct(T: typeid, Direction := Channel_Direction.Both) {
Channel :: struct($T: typeid, $Direction := Channel_Direction.Both) {
using _internal: ^Raw_Channel,
}