View Single Post
Deather
New Member
Join Date: Nov 2016
Old 06-24-2020 , 13:30   Re: Enum Structs Available This Holiday Season
Reply With Quote #38

Is it possible to return enum struct in function? Code below doesn't work.

Code:
enum struct STest
{
    int a;
    int b;
}
STest test;

STest GetTest()
{
   return test;
}
Deather is offline