wax-viewer/waxloader.h

20 lines
287 B
C
Raw Permalink Normal View History

2024-02-22 19:38:30 +02:00
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "prim.h"
class Wax
{
public:
Prim* p;
float bcx,bcy,bcz;
float anglex,angley;
float radius;
int count;
Wax() {}
Wax(char*path);
void loadconfig(char*s);
void loadprim(char*&s, Prim& p);
};