You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`mud` CLI commands will now recognize systems if they inherit directly from the base `System` imported from `@latticexyz/world/src/System.sol`, allowing you to write systems without a `System` suffix.
7
+
8
+
```solidity
9
+
import {System} from "@latticexyz/world/src/System.sol";
10
+
11
+
contract EntityProgram is System {
12
+
...
13
+
}
14
+
```
15
+
16
+
If you have contracts that inherit from the base `System` that aren't meant to be deployed, you can mark them as `abstract contract` or [disable the system's deploy via config](https://mud.dev/config/reference).
0 commit comments