mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Add a version number
This commit is contained in:
parent
48127431ad
commit
4bc640697f
1 changed files with 8 additions and 1 deletions
|
@ -1,8 +1,11 @@
|
|||
/*
|
||||
* fast_obj
|
||||
*
|
||||
* Version 1.0
|
||||
*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2018 Richard Knight
|
||||
* Copyright (c) 2018-2020 Richard Knight
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -27,6 +30,10 @@
|
|||
#ifndef FAST_OBJ_HDR
|
||||
#define FAST_OBJ_HDR
|
||||
|
||||
#define FAST_OBJ_VERSION_MAJOR 1
|
||||
#define FAST_OBJ_VERSION_MINOR 0
|
||||
#define FAST_OBJ_VERSION ((FAST_OBJ_VERSION_MAJOR << 8) | FAST_OBJ_VERSION_MINOR)
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue