13 lines
178 B
Text
13 lines
178 B
Text
|
|
/* Copyright (c) 2025, Sascha Willems
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
module payload;
|
||
|
|
|
||
|
|
public struct Payload
|
||
|
|
{
|
||
|
|
public float3 hitValue;
|
||
|
|
public bool shadowed;
|
||
|
|
};
|